arboard/platform/mod.rs
1#[cfg(all(unix, not(any(target_os = "macos", target_os = "android", target_os = "emscripten"))))]
2mod linux;
3#[cfg(all(
4 unix,
5 not(any(target_os = "macos", target_os = "android", target_os = "emscripten"))
6))]
7pub use linux::*;
8
9#[cfg(windows)]
10mod windows;
11#[cfg(windows)]
12pub use windows::*;
13
14#[cfg(target_os = "macos")]
15mod osx;
16#[cfg(target_os = "macos")]
17pub use osx::*;