btr 0.2.3

CLI to standardize build, test, and run commands across projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::process;

fn main() {
    match btr::run_from_args() {
        Ok(code) => process::exit(code),
        Err(err) => {
            eprintln!("{err}");
            process::exit(1);
        }
    }
}