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