aboutsummaryrefslogtreecommitdiff
path: root/src/tui.rs
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2024-05-01 23:45:05 +0530
committerkrolxon <krolyxon@tutanota.com>2024-05-01 23:45:05 +0530
commitb7fc6bc1a70da169f80afdc790c1a8ccf853d319 (patch)
treee2a5e56029fbc927b81bc72891eff50a5a048516 /src/tui.rs
parent955532893fc6db5a78f88ef2a2700dec56cd3012 (diff)
move the keymaps to thier individual files
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 9ebd34f..48e438c 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::EventHandler;
+use crate::event::event::EventHandler;
pub type CrosstermTerminal = ratatui::Terminal<ratatui::backend::CrosstermBackend<std::io::Stderr>>;