1 2 3 4 5 6 7 8 9 10
//! Defines the `Pipeline<T>` struct, its construction, modification, and execution logic. pub mod definition; pub mod execution; pub mod hooks; pub mod runner; pub use definition::Pipeline; pub use execution::{PlannedAction, StepPlan}; pub use runner::PipelineRunner;