1 2 3 4 5 6 7 8
//! WebSocket Reflector X //! //! A simple crate that proxies pure TCP connections to WebSocket connections //! and vice versa. pub mod proxy; pub use proxy::{proxy, Error, Message, WrappedWsStream};