Skip to main content

auto_cpufreq/config/
config_event_handler.rs

1// src/config/config_event_handler.rs
2
3// This module is now integrated into config.rs using the notify crate
4// The Python version used pyinotify, but we use notify which is cross-platform
5
6pub struct ConfigEventHandler;
7
8impl ConfigEventHandler {
9    pub fn new() -> Self {
10        ConfigEventHandler
11    }
12}
13
14impl Default for ConfigEventHandler {
15    fn default() -> Self {
16        Self::new()
17    }
18}