use crate::{Error, secrets::SecretProvider};
pub struct AwsSecretManagerConnector {}
impl AwsSecretManagerConnector {
pub fn from(
region: &str,
access_key_id: &str,
secret_access_key: &str
) -> Result<AwsSecretManagerConnector, Error> {
todo!()
}
}
impl SecretProvider for AwsSecretManagerConnector {}