uptime-kuma-dashboard/src/ui/events.rs
2025-12-24 07:11:40 -04:00

6 lines
86 B
Rust

#[derive(Debug)]
pub enum AppEvent {
KeyPress(char),
RefreshData,
Quit,
}