// src/tui/terminal/event_reader.rs use crossterm::event::{self, Event}; pub struct EventReader; impl EventReader { pub fn new() -> Self { Self } pub fn read_event(&self) -> Result> { Ok(event::read()?) } }