1#[cfg(unix)] 2mod unix; 3 4#[cfg(unix)] 5pub use unix::*; 6 7#[cfg(windows)] 8mod windows; 9 10#[cfg(windows)] 11pub use windows::*; 12 13const DEFAULT_TIMEOUT_MS: u32 = 3000;