use clap::{ArgMatches, Command}; use shitbox::Cmd; #[derive(Debug, Default)] pub struct Mount; impl Cmd for Mount { fn cli(&self) -> Command { Command::new("mount") } fn run(&self, _matches: &ArgMatches) -> Result<(), Box> { Ok(()) } fn path(&self) -> Option { Some(shitbox::Path::Bin) } }