Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//! Apple/Darwin-specific implementations
#[cfg(target_os = "macos")]
mod appkit;
mod event_handler;
mod notification_center;
#[cfg(not(target_os = "macos"))]
mod uikit;
pub use self::appkit::*;
pub use self::uikit::*;