1 2 3 4 5 6 7 8
//! Binary entry point for the Ironic CLI. fn main() { if let Err(error) = ironic::run() { eprintln!("error: {error}"); std::process::exit(1); } }