tide_websockets_ext/
lib.rs

1#![deny(missing_docs)]
2//! A crate that makes it easier to work with `tide-websockets`.
3
4pub mod error;
5pub mod websocket_state;
6
7pub use error::{Result, WebSocketStateError};
8pub use websocket_state::{WebSocketHandle, WebSocketState};