Skip to main content

auto_cpufreq/
lib.rs

1pub mod battery;
2pub mod config;
3pub mod core;
4pub mod globals;
5pub mod modules;
6pub mod power_helper;
7pub mod tlp_stat_parser;
8
9// Re-exports
10pub use config::{find_config_file, CONFIG};
11pub use globals::*; // CONFIG re-export now works
12
13#[cfg(feature = "gui")]
14pub mod gui;