rsiot/components_config/websocket_server/mod.rs
1//! Конфигурация Websocket-сервера
2//!
3//! Тестирование:
4//!
5//! ```bash
6//! cargo test -p rsiot-components-config --doc websocket_server
7//! ```
8
9mod config;
10mod ws_data;
11
12pub use {
13 super::websocket_general::WebsocketMessage,
14 config::{Config, FnInput, FnOutput},
15 ws_data::WsData,
16};