Skip to main content

cuenv_1password/secrets/
mod.rs

1//! 1Password secret resolution
2//!
3//! This module provides secret resolution from 1Password using either
4//! the WASM SDK (preferred) or CLI fallback.
5
6mod resolver;
7
8// Expose WASM utilities for testing
9pub mod core;
10pub mod wasm;
11
12pub use resolver::{OnePasswordConfig, OnePasswordResolver};