1 2 3 4 5 6 7 8 9 10
fn main() { // read config file match n4n5::cli_main() { Ok(_) => {} Err(e) => { eprintln!("{e}"); std::process::exit(1); } } }