1 2 3 4 5 6 7 8 9 10 11 12 13
#![allow(warnings)] mod cli; mod ops; mod utils; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error + 'static>> { match cli::run_cli().await { Ok(_) => (), Err(e) => println!("Error: {}", e), }; Ok(()) }