rsiot/components/cmp_websocket_client_wasm/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//!  Компонент клиента websocket для WASM

mod component;
mod config;
mod error;
mod fn_process;

pub use component::Cmp;
pub use config::Config;
pub use error::Error;

type Result = std::result::Result<(), Error>;