#[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, _callback: Box) -> Self { todo!() } pub fn unregister(&self) { todo!() } }