2023-06-14 21:49:20 +00:00
|
|
|
mod ui;
|
2023-06-15 17:19:24 +00:00
|
|
|
mod accounts;
|
2023-06-15 22:15:07 +00:00
|
|
|
mod app;
|
2023-06-14 21:49:20 +00:00
|
|
|
|
2023-07-01 10:44:11 +00:00
|
|
|
use cli_log::{error, warn, info};
|
2023-06-14 21:49:20 +00:00
|
|
|
|
2023-06-15 17:19:24 +00:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> anyhow::Result<()> {
|
2023-07-01 10:44:11 +00:00
|
|
|
cli_log::init_cli_log!();
|
2023-06-15 17:19:24 +00:00
|
|
|
|
2023-06-15 22:15:07 +00:00
|
|
|
let mut app = app::App::new();
|
2023-07-04 16:32:57 +00:00
|
|
|
app.run().await?;
|
2023-06-14 21:49:20 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|