aboutsummaryrefslogtreecommitdiff
path: root/src/tui.rs
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2024-06-15 00:06:35 +0530
committerkrolxon <krolyxon@tutanota.com>2024-06-15 00:06:35 +0530
commitf2b90514899af2e55f4fca9ad759029aa7511e0e (patch)
tree67375c06e03fcc7646fd82958c92f742efa8a674 /src/tui.rs
parent5795d00831da803442d737a928922093e2750aec (diff)
change event to event_handler
Diffstat (limited to 'src/tui.rs')
-rwxr-xr-xsrc/tui.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tui.rs b/src/tui.rs
index 48e438c..7eb0d1e 100755
--- a/src/tui.rs
+++ b/src/tui.rs
@@ -5,7 +5,7 @@ use crossterm::terminal::{self, *};
use std::panic;
use crate::app::{App, AppResult};
-use crate::event::event::EventHandler;
+use crate::event_handler::event::EventHandler;
pub type CrosstermTerminal = ratatui::Terminal<ratatui::backend::CrosstermBackend<std::io::Stderr>>;