Files
codex/codex-rs/process/src/lib.rs
2026-06-03 18:39:57 +00:00

15 lines
318 B
Rust

//! Codex-specific process spawning helpers.
//!
//! Spawned children must be explicitly joined before their managed handle is
//! dropped. Debug builds enforce this with a drop bomb, while release builds
//! log an error.
mod command_ext;
mod drop_bomb;
pub mod sync;
pub mod tokio;
#[cfg(test)]
mod test_support;