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;
10
11pub use super::websocket_general::WebsocketMessage;
12pub use config::{Config, FnInput, FnOutput};