1#[cfg(target_os = "macos")] 2mod macos; 3 4#[cfg(target_os = "linux")] 5mod linux; 6 7#[cfg(target_os = "macos")] 8pub use macos::*; 9 10#[cfg(target_os = "linux")] 11pub use linux::*;