1
2
3
4
5
6
7
8
9
mod component;
mod config;
mod error;
mod fn_process;

/// Компонент для подключения через websocket server.
pub mod cmp_websocket_client {
    pub use crate::{component::Cmp, config::Config};
}