osp-cli 1.5.1

CLI and REPL for querying and managing OSP infrastructure data
Documentation
1
2
3
4
5
6
7
#![warn(clippy::expect_used, clippy::panic, clippy::unwrap_used)]

//! Binary entrypoint for the `osp` command.

fn main() {
    std::process::exit(osp_cli::run_process(std::env::args_os()));
}