1 2 3 4 5 6 7
#[tokio::main] pub async fn main() { if let Err(err) = pixi::cli::execute().await { eprintln!("{err:?}"); std::process::exit(1); } }