1 2 3 4 5 6 7 8
//! Hub transport layer: Socket.IO `/cli` client + REST session creation. pub mod client; pub mod rest; pub mod sio; pub use client::HubClient; pub use sio::Inbound;