Place mods under all imports

This commit is contained in:
mo8it
2024-04-18 11:31:08 +02:00
parent 1eac00e89a
commit 2566f9aaf6
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -7,12 +7,12 @@ use crossterm::{
use ratatui::{backend::CrosstermBackend, Terminal};
use std::io;
mod state;
use crate::app_state::AppState;
use self::state::{Filter, UiState};
mod state;
pub fn list(app_state: &mut AppState) -> Result<()> {
let mut stdout = io::stdout().lock();
stdout.execute(EnterAlternateScreen)?;