digdigdig3_core/core/websocket/mod.rs
1//! WebSocket stream-description TYPES (no transport / connection logic).
2//!
3//! Only the pure type definitions live here — `StreamKind`, `KlineInterval`,
4//! `StreamSpec`, `SupportLevel`. The actual WS framework (transport, protocol,
5//! reconnect, topic registry) stays in the full `digdigdig3` crate.
6
7pub mod stream_kind;
8pub mod stream_spec;
9pub mod support_level;
10
11pub use stream_kind::{KlineInterval, StreamKind};
12pub use stream_spec::StreamSpec;
13pub use support_level::SupportLevel;