tsafe-cli 1.0.27

Secrets runtime for developers — inject credentials into processes via exec, never into shell history or .env files
1
2
3
4
5
6
7
//! tsafe CLI — main entry point and command dispatcher.
//!
//! All logic lives in `lib.rs`; this file is a thin shim for the binary.

fn main() {
    tsafe_cli::run();
}