1 2 3 4 5 6 7 8 9
use log::error; #[tokio::main(flavor = "current_thread")] async fn main() { if let Err(error) = atcoder_kit::run().await { error!("{error}"); std::process::exit(1); } }