uconsole_sleep/
lib.rs

1//! Console Sleep Service Library
2//! Pure Rust implementation with zero external dependencies
3
4pub mod args;
5pub mod config;
6pub mod error;
7pub mod hardware;
8pub mod power_mode;
9
10pub use config::Config;
11pub use error::Error;
12pub use hardware::CpuFreqConfig;
13pub use hardware::wifi::WifiConfig;
14pub use hardware::*;
15pub use power_mode::PowerMode;
16pub use power_mode::{enter_saving_mode, exit_saving_mode};