Init Commit

This commit is contained in:
2025-10-05 21:40:49 +08:00
commit 5053d19d73
8 changed files with 1419 additions and 0 deletions

15
src/main.rs Normal file
View File

@@ -0,0 +1,15 @@
mod app;
mod event;
use color_eyre::Result;
use tokio;
#[tokio::main]
async fn main() -> Result<()> {
color_eyre::install()?;
let terminal = ratatui::init();
let mut app = app::App::new();
let result = app.run(terminal).await;
ratatui::restore();
result
}