mirror of
https://github.com/nushell/nushell
synced 2025-01-10 12:19:14 +00: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::*;
|