mirror of
https://github.com/nushell/nushell.git
synced 2025-04-24 21:28:20 +02:00
* Move sys, ps, fetch, post to internal commands * Remove old plugins * clippy Co-authored-by: JT <jonatha.d.turner@gmail.com>
10 lines
168 B
Rust
10 lines
168 B
Rust
#[cfg(feature = "ps")]
|
|
mod ps;
|
|
#[cfg(feature = "ps")]
|
|
pub use ps::Command as Ps;
|
|
|
|
#[cfg(feature = "sys")]
|
|
mod sys;
|
|
#[cfg(feature = "sys")]
|
|
pub use sys::Command as Sys;
|