// use chrono::{DateTime, Utc};
// use std::collections::HashMap;
// #[derive(Debug, Default)]
// pub struct VaultEntry {
// pub namespace: String,
// pub key_name: String,
// pub plaintext: String,
// pub attributes: HashMap<String, String>,
// pub expired_at: Option<DateTime<Utc>>,
// }
// impl VaultEntry {
// pub fn save(&self) -> Result<()> {
// todo!()
// }
// }