1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[cfg(target_family = "unix")] mod unix; #[cfg(target_family = "unix")] pub use unix::*; #[cfg(target_family = "windows")] mod windows; #[cfg(target_family = "windows")] pub use windows::*; mod shared; pub use shared::*; pub mod download;