1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use std::process::ExitCode; mod audit; mod cli; mod commands; mod envelope; mod exit; mod keychain; mod redact; mod skill; fn main() -> ExitCode { let exit_code = cli::run(); ExitCode::from(exit_code) }