pub trait Command: Send + Sync {
// Required method
fn execute(&self) -> CliResult<()>;
}Expand description
Trait for command handlers
pub trait Command: Send + Sync {
// Required method
fn execute(&self) -> CliResult<()>;
}Trait for command handlers