//! keytap — cross-platform, observe-only global keyboard taps.
//!
//! See `DESIGN.md` in the repository root for the full architecture.
//!
//! ```no_run
//! use keytap::{Tap, EventKind, Key};
//!
//! # fn main() -> Result<(), keytap::Error> {
//! let tap = Tap::new()?;
//! for event in tap.iter() {
//! if let EventKind::KeyDown(Key::MetaRight) = event.kind {
//! println!("Right-⌘ pressed");
//! }
//! }
//! # Ok(()) }
//! ```
// scaffolding — impls land in subsequent commits
pub use ;
pub use Error;
pub use ;
pub use ;
pub use ;