rsiot/components_config/websocket_server/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Конфигурация Websocket-сервера
//!
//! Тестирование:
//!
//! ```bash
//! cargo test -p rsiot-components-config --doc websocket_server
//! ```

mod config;

pub use super::websocket_general::WebsocketMessage;
pub use config::{Config, FnInput, FnOutput};