You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
276 B

4 years ago
  1. use clap_nested::{Command};
  2. pub fn get_command<'a>() -> Command<'a, str>{
  3. Command::new("dedupe")
  4. .description("dedupe a m3u playlist")
  5. .runner(| args, _matches| {
  6. println!("Running dedupe, logging = {}", args);
  7. Ok(())
  8. })
  9. }