zero4rs 2.0.0

zero4rs is a powerful, pragmatic, and extremely fast web framework for Rust
Documentation
mod restful;

mod command;
mod handler_chat_ws;
mod handler_text_msg;
mod server;
mod server_handler;

pub mod services;

pub use command::*;
pub use handler_chat_ws::*;
pub use handler_text_msg::*;
pub use restful::*;
pub use server::*;
pub use server_handler::*;

/// Connection ID.
pub type ConnId = usize;

/// Room ID.
pub type RoomId = String;

/// Message sent to a room/client.
pub type Msg = String;