Skip to main content

ralph_workflow/runtime/
process_executor.rs

1//! Process executor utilities in the runtime boundary.
2//!
3//! This module re-exports the main process executor types for use
4//! in boundary composition.
5
6pub use crate::executor::{ProcessExecutor, ProcessOutput};
7
8/// Trait for process execution, allowing testability.
9pub use crate::executor::ProcessExecutor as Executor;