rsiot_websocket_client_wasm/
lib.rs1#![cfg(all(target_arch = "wasm32", feature = "single-thread"))]
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7
8pub mod cmp_websocket_client_wasm {
9 pub use super::{component::Cmp, config::Config};
10}
11
12type Result = std::result::Result<(), error::Error>;