aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: ca87db641a39d54e3db58c238a136607bc01358f (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 keys;
mod tui;

use eyre::Result;

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

    app.run()
}