watchexec/crates/lib/src/command.rs

15 lines
224 B
Rust

//! Command construction, configuration, and tracking.
#[doc(inline)]
pub use process::Process;
#[doc(inline)]
pub use shell::Shell;
#[doc(inline)]
pub use supervisor::Supervisor;
mod process;
mod shell;
mod supervisor;