9 lines
163 B
Rust
9 lines
163 B
Rust
#[cfg(windows)]
|
|
mod windows;
|
|
#[cfg(windows)]
|
|
pub(crate) use self::windows::*;
|
|
|
|
#[cfg(not(windows))]
|
|
mod other;
|
|
#[cfg(not(windows))]
|
|
pub(crate) use self::other::*;
|