use crate::services::hotkey_service::HotkeyScope;
mod constructors;
mod methods;
mod traits;
pub use constructors::*;
pub use methods::*;
pub use traits::*;
#[derive(Debug, Clone)]
pub struct Hotkey {
pub key: String,
pub description: String,
pub scope: HotkeyScope,
pub priority: u32,
}