blob: 04aae27f52f4fbd6751c21924382c11d57644449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[derive(Debug)]
pub struct SignalHandler;
impl SignalHandler {
pub const SIGINT: &'static str = "SIGINT";
pub const SIGTERM: &'static str = "SIGTERM";
pub const SIGHUP: &'static str = "SIGHUP";
pub fn create(signals: Vec<String>, callback: Box<dyn Fn(String, &SignalHandler)>) -> Self {
todo!()
}
pub fn unregister(&self) {
todo!()
}
}
|