fixed Crossterm Error

This commit is contained in:
Alex Emmet 2025-12-04 21:45:05 +00:00
commit 74613226d8
2 changed files with 169 additions and 198 deletions

View file

@ -1,6 +1,6 @@
use crate::{ACTIVE_TASKS, RELOAD, SHUTDOWN, gui::tui::UNIQUE, util::config_util::CONFIG};
use crossterm::event::{Event, KeyCode, read};
use crossterm::event::{KeyEvent, KeyModifiers};
use ratatui::crossterm::event::{Event, KeyCode, read};
use tokio::{self};
pub fn setup_input_handler() {