mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 18:00:49 +02:00
# Description Part 2 of replacing `std::path` types with `nu_path` types added in #13115. This PR targets `nu-test-support`.
11 lines
207 B
Rust
11 lines
207 B
Rust
mod director;
|
|
pub mod nu_process;
|
|
mod play;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub use director::Director;
|
|
pub use nu_process::{Executable, NuProcess, Outcome};
|
|
pub use play::{Dirs, EnvironmentVariable, Playground};
|