16 lines
354 B
Rust
16 lines
354 B
Rust
//! Apple/Darwin-specific implementations
|
|
|
|
#[cfg(target_os = "macos")]
|
|
mod appkit;
|
|
mod event_handler;
|
|
mod event_loop_proxy;
|
|
mod notification_center;
|
|
#[cfg(not(target_os = "macos"))]
|
|
mod uikit;
|
|
|
|
#[allow(unused_imports)]
|
|
#[cfg(target_os = "macos")]
|
|
pub use self::appkit::*;
|
|
#[allow(unused_imports)]
|
|
#[cfg(not(target_os = "macos"))]
|
|
pub use self::uikit::*;
|