1//! Asynchronous command execution. 2//! 3//! Provides command building and execution using `tokio::process::Command`. 4 5pub mod builder; 6pub mod pipeline; 7 8pub use builder::CommandBuilder; 9pub use pipeline::Pipeline;