repobin 0.1.0-alpha.1

Experimental repo-local Bazel command dispatcher; API and behavior may change without notice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::process::ExitCode;

use repobin::run_from_env;

fn main() -> ExitCode {
    match run_from_env() {
        Ok(code) => code,
        Err(error) => {
            eprintln!("error: {error}");
            error.exit_code()
        }
    }
}