#![deny(unsafe_op_in_unsafe_fn)]#![deny(clippy::undocumented_unsafe_blocks)]#[path="../commands/mod.rs"]modcommands;#[path="../secret_prompt.rs"]modsecret_prompt;fnmain(){ifletErr(err)=commands::run(){let exit_code =commands::exit_code(err.as_ref());ifletSome(err)= err.downcast_ref::<clap::Error>(){ifletErr(print_err)= err.print(){eprintln!("error: {print_err}");}}elseifletErr(print_err)=commands::print_error(err.as_ref()){eprintln!("Error: {err}\nCould not format the error: {print_err}");}std::process::exit(exit_code);}}