dugout 0.1.8

Git-native secrets manager for development teams, written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Diagnostic and check commands.
//!
//! Status overview and git history auditing.

mod audit;
mod status;

// Re-export command functions
pub use audit::execute as audit;
pub use status::execute as status;