use std::collections::BTreeMap; use uuid::Uuid; pub struct ApiKey { inner: secrecy::SecretBox, } pub struct SecretStore { api_keys: BTreeMap, }