1 2 3 4 5 6 7 8
use kanbus::cli::run_from_env; fn main() { if let Err(error) = run_from_env() { eprintln!("{error}"); std::process::exit(1); } }