servers/src/commands/mod.rs

12 lines
232 B
Rust

//! Build-in commands
mod help;
use crate::plugins::Command;
/// Register build-in commands
pub fn register_commands() -> Vec<Box<dyn Command>> {
// create array with build-in commands
vec![Box::new(help::CommandHelp)]
}