aboutsummaryrefslogtreecommitdiff
path: root/planetwars-cli/src/lib.rs
blob: e5566b06591accb38a0d0a2a3d04d4e9fde245fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
mod commands;
mod match_runner;
mod web;
mod workspace;

pub async fn run() {
    let res = commands::Cli::run().await;
    if let Err(err) = res {
        eprintln!("{}", err);
        std::process::exit(1);
    }
}