pub trait CliCommand {
// Required method
fn execute(&self, config: &CliConfig) -> Result<(), CliError>;
}Expand description
Trait for all CLI commands
pub trait CliCommand {
// Required method
fn execute(&self, config: &CliConfig) -> Result<(), CliError>;
}Trait for all CLI commands