atcoder-kit 0.2.0

A command-line tool for AtCoder like acc and oj.
Documentation
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);
    }
}