pub trait SecretStore: Send + Sync {
// Required methods
fn set_secret(&self, key: &str, secret: &str) -> Result<()>;
fn get_secret(&self, key: &str) -> Result<Option<String>>;
}pub trait SecretStore: Send + Sync {
// Required methods
fn set_secret(&self, key: &str, secret: &str) -> Result<()>;
fn get_secret(&self, key: &str) -> Result<Option<String>>;
}