Initial commit
Some checks failed
CI / fmt (push) Has been cancelled
CI / clippy (push) Has been cancelled
CI / doc (push) Has been cancelled
CI / test macos-latest (push) Has been cancelled
CI / test windows-latest (push) Has been cancelled

This commit is contained in:
2025-09-30 22:07:46 +08:00
commit 80ddea4946
13 changed files with 1061 additions and 0 deletions

9
src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
mod app;
fn main() -> color_eyre::Result<()> {
color_eyre::install()?;
let terminal = ratatui::init();
let result = app::App::new().run(terminal);
ratatui::restore();
result
}