1 2 3 4 5 6 7 8 9 10
//! Shared types, error definitions, and utility functions used across all //! secret store providers. pub mod error; pub mod types; pub mod utils; pub use error::{Error, Result}; pub use types::{SecretMeta, SecretValue}; pub use utils::obfuscate_secret;