1 2 3 4 5 6
use crate::{MfaConfig, Result}; pub fn run(config: MfaConfig) -> Result<()> { println!("{config}"); Ok(()) }