servers 0.6.0

TCP and WebSocket server for Clients written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod disconnect;
mod help;
mod id;

use self::{disconnect::Disconnect, help::Help, id::ID};
use crate::plugins::prelude::*;

/// Register default commands
pub fn register_commands() -> Vec<Box<dyn Command>> {
    vec![Box::new(Help), Box::new(Disconnect), Box::new(ID)]
}