pub(crate) trait CliCommand {
type Output;
// Required method
fn run(self) -> Result<(), Error>;
}Expand description
An executable CLI command.
pub(crate) trait CliCommand {
type Output;
// Required method
fn run(self) -> Result<(), Error>;
}An executable CLI command.