servers/src/commands/mod.rs

12 lines
223 B
Rust
Raw Normal View History

2022-06-17 11:43:23 +00:00
//! Build-in commands
2022-06-04 11:58:21 +00:00
mod help;
use crate::plugins::Command;
2022-06-04 11:58:21 +00:00
2022-06-05 20:10:23 +00:00
/// Register default commands
2022-06-04 11:58:21 +00:00
pub fn register_commands() -> Vec<Box<dyn Command>> {
2022-06-05 20:10:23 +00:00
// create Vector with Commands
2022-06-16 17:31:09 +00:00
vec![Box::new(help::CommandHelp)]
2022-06-04 11:58:21 +00:00
}