11 lines
176 B
Rust
11 lines
176 B
Rust
use std::collections::BTreeMap;
|
|
|
|
use uuid::Uuid;
|
|
|
|
pub struct ApiKey {
|
|
inner: secrecy::SecretBox<String>,
|
|
}
|
|
pub struct SecretStore {
|
|
api_keys: BTreeMap<Uuid, ApiKey>,
|
|
}
|