mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 18:00:49 +02:00
This cmomit also modifies run_external and job_unfreeze because the engine_state stores the id of the current job in the current_thread_job field, so its usages are accessed differently now.
20 lines
353 B
Rust
20 lines
353 B
Rust
mod is_admin;
|
|
mod job;
|
|
mod job_id;
|
|
mod job_kill;
|
|
mod job_list;
|
|
mod job_spawn;
|
|
|
|
#[cfg(all(unix, feature = "os"))]
|
|
mod job_unfreeze;
|
|
|
|
pub use is_admin::IsAdmin;
|
|
pub use job::Job;
|
|
pub use job_id::JobId;
|
|
pub use job_kill::JobKill;
|
|
pub use job_list::JobList;
|
|
pub use job_spawn::JobSpawn;
|
|
|
|
#[cfg(all(unix, feature = "os"))]
|
|
pub use job_unfreeze::JobUnfreeze;
|