rsiot/components/cmp_esp_wifi/
mod.rs

1//! Шаблон компонента
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7// mod wifi_manager;
8
9pub use component::Cmp;
10pub use config::{Config, ConfigAccessPoint, ConfigAuthMethod, ConfigClient};
11pub use error::Error;
12
13type Result<T> = std::result::Result<T, Error>;