pub trait ISubcommandExecutor {
    fn execute(&self, path: Option<String>) -> Result<()>;
}
Expand description

The trait of subcommand executor, support mutiple provider.

Required Methods

Execute subcommand, The parameter path is current registry path value.

Implementors