1 2 3 4 5 6 7 8 9 10
mod run; use run::run; use std::process::exit; #[tokio::main] async fn main() { if let Err(err) = run().await { eprintln!("\x1b[1;31mfatal error\x1b[39m:\x1b[22m {err}"); exit(1); } }