Skip to main content

erio_workflow/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Erio Workflow - DAG workflow engine for orchestrating steps.
4
5pub mod builder;
6pub mod checkpoint;
7pub mod conditional;
8pub mod context;
9pub mod dag;
10pub mod engine;
11pub mod error;
12pub mod step;
13
14pub use builder::Workflow;
15pub use checkpoint::Checkpoint;
16pub use context::WorkflowContext;
17pub use dag::Dag;
18pub use engine::WorkflowEngine;
19pub use error::WorkflowError;
20pub use step::{Step, StepOutput};