1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(all(target_arch = "wasm32", feature = "single-thread"))]

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

pub mod cmp_websocket_client_wasm {
    pub use super::{component::Cmp, config::Config};
}

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