typebridge-cli 0.3.2

Standalone CLI for typewriter generation, drift checks, and watch mode
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    std::process::exit(match typebridge_cli::run() {
        Ok(code) => code,
        Err(err) => {
            eprintln!("typewriter: {}", err);
            1
        }
    });
}