1 2 3 4 5 6 7 8 9
pub mod interface; #[tokio::main] async fn main() { if let Err(err) = interface::run::run_rustycli().await { eprintln!("Error: {}", err); std::process::exit(1); } }