servers/src/commands/mod.rs

10 lines
147 B
Rust

mod help;
pub use help::*;
use crate::plugins::Command;
pub fn register_commands() -> Vec<Box<dyn Command>> {
vec![Box::new(CommandHelp)]
}