nushell/crates/nu-command/src/system/mod.rs

34 lines
622 B
Rust
Raw Normal View History

mod complete;
#[cfg(unix)]
mod exec;
mod nu_check;
#[cfg(any(
target_os = "android",
target_os = "linux",
target_os = "macos",
target_os = "windows"
))]
2021-10-01 23:53:13 +02:00
mod ps;
#[cfg(windows)]
mod registry_query;
2021-09-29 20:25:05 +02:00
mod run_external;
2021-10-01 08:53:47 +02:00
mod sys;
mod which_;
2021-09-29 20:25:05 +02:00
pub use complete::Complete;
#[cfg(unix)]
pub use exec::Exec;
pub use nu_check::NuCheck;
#[cfg(any(
target_os = "android",
target_os = "linux",
target_os = "macos",
target_os = "windows"
))]
2021-10-01 23:53:13 +02:00
pub use ps::Ps;
#[cfg(windows)]
pub use registry_query::RegistryQuery;
2021-09-29 20:25:05 +02:00
pub use run_external::{External, ExternalCommand};
2021-10-01 08:53:47 +02:00
pub use sys::Sys;
pub use which_::Which;