pub trait Subcommand {
    fn name(&self) -> &str;
    fn build_command(&self, repl: Repl<Context, Error>) -> Repl<Context, Error>;
}

Required methods

Implementors