pub trait CliCommand<A: Args> {
// Required methods
fn get_command(&self, command: Command) -> Command;
fn get_executor(self) -> Box<ExecutorFunc>;
}pub trait CliCommand<A: Args> {
// Required methods
fn get_command(&self, command: Command) -> Command;
fn get_executor(self) -> Box<ExecutorFunc>;
}