1 2 3 4 5 6 7 8 9 10
pub mod cli; use std::process; fn main() { cli::run().unwrap_or_else(|err| { eprintln!("Error: {err}"); process::exit(1) }); }