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