molehole/src/main.rs

16 lines
232 B
Rust
Raw Normal View History

2024-03-06 04:34:55 +00:00
mod app;
2024-03-06 16:45:18 +00:00
mod app_action;
2024-03-06 04:34:55 +00:00
mod app_event;
mod component;
2024-03-06 06:11:00 +00:00
mod components;
2024-03-06 04:34:55 +00:00
mod tui;
use eyre::Result;
fn main() -> Result<()> {
2024-03-06 06:11:00 +00:00
let mut app = app::App::new(std::time::Duration::from_millis(10))?;
app.run()?;
2024-03-06 04:34:55 +00:00
app.quit()
}