lmrc-cli 0.3.16

CLI tool for scaffolding LMRC Stack infrastructure projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Vault Secrets Management
//!
//! Provides endpoints to manage secrets in HashiCorp Vault:
//! - Read secrets
//! - Write secrets
//! - Delete secrets
//! - Generate service tokens

pub mod handlers;
pub mod models;
pub mod service;

pub use handlers::*;
pub use models::*;