use serde::{Deserialize, Serialize};
use sos_core::SecretId;
use std::collections::HashMap;
use url::Url;
mod export;
mod import;
pub use export::export_authenticator;
pub use import::import_authenticator;
const OTP_AUTH_URLS: &str = "otp_auth.json";
#[derive(Default, Serialize, Deserialize)]
pub struct AuthenticatorUrls {
pub otp: HashMap<SecretId, Url>,
}