wsprism/
lib.rs

1//! Top-level facade crate for wsPrism.
2//!
3//! Re-exports core types and the gateway library so users can depend on a single crate.
4
5pub mod core {
6    pub use wsprism_core::*;
7}
8
9pub mod gateway {
10    pub use wsprism_gateway::*;
11}