servers/src/commands/mod.rs

16 lines
312 B
Rust
Raw Normal View History

2022-06-17 11:43:23 +00:00
//! Build-in commands
mod disconnect;
2022-06-04 11:58:21 +00:00
mod help;
use crate::plugins::Command;
2022-06-04 11:58:21 +00:00
2022-06-21 10:33:13 +00:00
/// Register build-in commands
2022-06-04 11:58:21 +00:00
pub fn register_commands() -> Vec<Box<dyn Command>> {
2022-06-21 10:33:13 +00:00
// create array with build-in commands
vec![
Box::new(help::CommandHelp),
Box::new(disconnect::CommandDisconnect),
]
2022-06-04 11:58:21 +00:00
}