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