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