rsiot/components/cmp_esp_wifi/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! Шаблон компонента

mod component;
mod config;
mod error;
mod fn_process;
// mod wifi_manager;

pub use component::Cmp;
pub use config::{Config, ConfigAccessPoint, ConfigAuthMethod, ConfigClient};
pub use error::Error;

type Result<T> = std::result::Result<T, Error>;