1#[cfg(windows)] 2mod windows; 3#[cfg(windows)] 4pub(crate) use self::windows::*; 5 6#[cfg(not(windows))] 7mod other; 8#[cfg(not(windows))] 9pub(crate) use self::other::*;