10 lines
119 B
Rust
10 lines
119 B
Rust
#[cfg(unix)]
|
|
mod unix;
|
|
#[cfg(unix)]
|
|
pub use unix::*;
|
|
|
|
#[cfg(windows)]
|
|
mod windows;
|
|
#[cfg(windows)]
|
|
pub use windows::*;
|