1 2 3 4 5 6 7 8 9 10 11
#![cfg_attr(test, allow(clippy::expect_used))] mod main_support; #[tokio::main(flavor = "current_thread")] async fn main() { if let Err(error) = main_support::run().await { eprintln!("forge-pilot: {error}"); std::process::exit(1); } }