pub trait Runnable {
// Required method
fn run(&self, format: Format, dry_run: bool) -> Result<()>;
}Expand description
A CLI subcommand that can be executed.
pub trait Runnable {
// Required method
fn run(&self, format: Format, dry_run: bool) -> Result<()>;
}A CLI subcommand that can be executed.