nushell/crates/nu-command/src/experimental/mod.rs
cosineblast bffa9d3278 Implement job id command
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.
2025-03-22 08:39:48 -03:00

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;