1 2 3 4 5 6 7 8 9
fn main() { match treer::cmd::root::run() { Ok(()) => {} Err(err) => { eprintln!("Error: {err}"); std::process::exit(1); } } }