1
0
Fork 0
trinitrix/src/main.rs

16 lines
224 B
Rust

mod accounts;
mod app;
mod ui;
use cli_log::{error, info, warn};
#[tokio::main]
async fn main() -> anyhow::Result<()> {
cli_log::init_cli_log!();
let mut app = app::App::new();
app.run().await?;
Ok(())
}