Trait slashy::framework::CommandInit[][src]

pub trait CommandInit {
    fn command_init() -> Command;
}
Expand description

A trait impl-ed automatically by the command macro to init commands with the framework

Required methods

fn command_init() -> Command[src]

The function run to initialize the command

Implementors