rspyts-cli 3.0.3

Compiler and build orchestrator for rspyts
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Process entry point for the `rspyts` executable.
//!
//! The library owns parsing and behavior. The binary owns only terminal error
//! presentation and the nonzero failure exit status.

fn main() {
    if let Err(error) = rspyts_cli::run() {
        eprintln!("error: {error:#}");
        std::process::exit(1);
    }
}