envy-secrets 0.5.1

A secure, deterministic, and frictionless environment variable manager
1
2
3
4
5
6
7
8
9
10
11
//! Binary entry point for the `envy` CLI.
//!
//! Delegates entirely to [`envy_secrets::cli::run`], which parses arguments, manages
//! the vault lifecycle, and returns a POSIX exit code. The sole responsibility
//! of `main` is to forward that code to the OS via [`std::process::exit`].

use std::process;

fn main() {
    process::exit(envy_secrets::cli::run());
}