8 lines
155 B
Rust
8 lines
155 B
Rust
|
#[cfg(target_os = "windows")]
|
||
|
pub(crate) mod windows;
|
||
|
|
||
|
#[cfg(target_os = "linux")]
|
||
|
pub(crate) mod linux;
|
||
|
|
||
|
#[cfg(target_os = "macos")]
|
||
|
pub(crate) mod macos;
|