Skip to main content

cadmus_core/device/wifi/
mod.rs

1//! WiFi management.
2
3mod error;
4mod manager;
5
6cfg_select! {
7    feature = "kobo" => {
8        mod kobo;
9        pub(crate) use kobo::create_wifi_manager;
10    }
11    _ => {
12        mod stub;
13        pub(crate) use stub::create_wifi_manager;
14    }
15}
16
17pub use error::WifiError;
18pub use manager::WifiManager;