pub trait Run {
    fn run(&self, config: &Config<'_>) -> Result<()>;
}
Expand description

Runs the command or subcommand.

Required Methods

Runs the command or subcommand.

Implementors