aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 16bee88fbdbd5dfea6c9c3b63ea001817b6b42be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod app;
mod app_action;
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()
}