aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 29c6439ef2f5b20825d1a2dc05a398aa7d17e223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod action;
mod app;
mod app_event;
mod component;
mod components;
mod tui;

use eyre::Result;

fn main() -> Result<()> {
    let mut app = app::App::new(std::time::Duration::from_millis(10))?;
    app.run()?;

    app.quit()
}