rsiot_http_client_wasm/
lib.rs

1//! HTTP-клиент для платформы WASM
2
3#![cfg(target_arch = "wasm32")]
4
5mod component;
6mod config;
7mod error;
8mod fn_process;
9
10pub mod cmp_http_client_wasm {
11    pub use crate::component::Cmp;
12    pub use crate::config::config;
13}
14
15type Result<T> = std::result::Result<T, error::Error>;