1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Wrappers for [std::process] which provide commands in error contexts

mod child;
mod command;
mod exitstatus;
mod output;

pub use self::child::Child;
pub use self::command::CommandAnyhow;
pub use self::exitstatus::ExitStatus;
pub use self::output::Output;

#[cfg(test)]
mod tests;