1 2 3 4 5 6 7 8 9 10 11
use std::process::ExitCode; #[tokio::main] async fn main() -> ExitCode { if let Err(e) = ci_manager::run().await { eprintln!("Error: {e}"); ExitCode::FAILURE } else { ExitCode::SUCCESS } }