auto-cpufreq 3.2.1

Automatic CPU speed & power optimizer for Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// src/config/config_event_handler.rs

// This module is now integrated into config.rs using the notify crate
// The Python version used pyinotify, but we use notify which is cross-platform

pub struct ConfigEventHandler;

impl ConfigEventHandler {
    pub fn new() -> Self {
        ConfigEventHandler
    }
}

impl Default for ConfigEventHandler {
    fn default() -> Self {
        Self::new()
    }
}