molehole/src/main.rs

16 lines
228 B
Rust
Raw Normal View History

2024-03-06 04:34:55 +00:00
mod action;
mod app;
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()
}