watchexec/crates/lib/src/command.rs

15 lines
224 B
Rust
Raw Normal View History

//! Command construction, configuration, and tracking.
#[doc(inline)]
pub use process::Process;
2021-08-22 14:28:20 +02:00
#[doc(inline)]
pub use shell::Shell;
2021-08-22 14:28:20 +02:00
#[doc(inline)]
pub use supervisor::Supervisor;
2021-08-16 17:09:22 +02:00
mod process;
mod shell;
mod supervisor;