blob: 32845d323f56992b0847d019354a1f4cbe022c9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
mod action;
mod app;
mod app_event;
mod component;
mod tui;
use eyre::Result;
fn main() -> Result<()> {
let mut app = app::App::start(std::time::Duration::from_millis(10))?;
app.quit()
}
|