Skip to main content

agentic_workflow/
lib.rs

1//! AgenticWorkflow — Universal Orchestration Engine
2//!
3//! Coordinates workflows, pipelines, state machines, batch processing,
4//! and every coordination pattern through a single engine.
5
6pub mod types;
7pub mod engine;
8pub mod resilience;
9pub mod governance;
10pub mod template;
11pub mod intelligence;
12pub mod format;
13
14// Re-export core types for convenience
15pub use types::*;