1 2 3 4 5 6 7 8
use cfg_if::cfg_if; cfg_if! { if #[cfg(target_os = "linux")] { mod linux; pub use linux::*; } }