//! Awase (合わせ) --- global hotkey abstraction.
//!
//! Provides platform-agnostic types and traits for global hotkey
//! registration. macOS and Linux backends can be added as separate
//! feature-gated modules.
//!
//! # Quick Start
//!
//! ```rust
//! use awase::{Hotkey, Modifiers, Key, NoopManager, HotkeyManager};
//!
//! let hk = Hotkey::parse("cmd+space").unwrap();
//! assert_eq!(hk.modifiers, Modifiers::CMD);
//! assert_eq!(hk.key, Key::Space);
//!
//! let mut manager = NoopManager::new();
//! manager.register(1, hk).unwrap();
//! manager.unregister(1).unwrap();
//! ```
pub use AwaseError;
pub use ;
pub use ;