runtime-cli 0.1.0

Command-line client for managing git projects on Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `runtime` — the Runtime CLI client (Milestone 30).

fn main() {
    let code = match runtime_cli::run(std::env::args_os().collect::<Vec<_>>()) {
        Ok(()) => 0,
        Err(e) => {
            eprintln!("runtime: {e:#}");
            1
        }
    };
    std::process::exit(code);
}