use clap_nested::{Command}; pub fn get_command<'a>() -> Command<'a, str>{ Command::new("dedupe") .description("dedupe a m3u playlist") .runner(| args, _matches| { println!("Running dedupe, logging = {}", args); Ok(()) }) }