mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 11:54:02 +01:00
14 lines
282 B
Rust
14 lines
282 B
Rust
|
#[cfg(target_os = "linux")]
|
||
|
mod linux;
|
||
|
#[cfg(target_os = "macos")]
|
||
|
mod macos;
|
||
|
#[cfg(target_os = "windows")]
|
||
|
mod windows;
|
||
|
|
||
|
#[cfg(target_os = "linux")]
|
||
|
pub use self::linux::*;
|
||
|
#[cfg(target_os = "macos")]
|
||
|
pub use self::macos::*;
|
||
|
#[cfg(target_os = "windows")]
|
||
|
pub use self::windows::*;
|