servers/src/commands/mod.rs

14 lines
238 B
Rust
Raw Normal View History

2022-06-04 11:58:21 +00:00
mod help;
pub use help::*;
use crate::command_handler::Command;
pub fn register_commands() -> Vec<Box<dyn Command>> {
let mut commands: Vec<Box<dyn Command>> = Vec::new();
commands.push(Box::new(CommandHelp));
commands
}