1 2 3 4 5 6 7 8 9
pub mod api; pub mod handler; pub mod server; /// Connection ID. pub type ConnId = usize; /// Message sent to a room/client. pub type Msg = String;