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