Skip to main content

envx_secure/commands/
mod.rs

1//! Implementations of each `envx` subcommand.
2//!
3//! Each module exposes a `run` (or `run_*`) function that is called from
4//! `main` after argument parsing.  All subcommands share the [`crate::parser`]
5//! module for `.env` file parsing.
6
7pub mod audit;
8pub mod diff;
9pub mod encrypt;