ironflow-orchestrator 0.1.0

A lightning-fast, zero-dependency workflow orchestrator written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod api;
pub mod dag;
pub mod executor;
pub mod scheduler;
pub mod operators;
pub mod store;
pub mod cli;
pub mod config;
pub mod ui;

pub use dag::DagDefinition;
pub use executor::DagExecutor;
pub use scheduler::DagScheduler;
pub use store::Store;
pub use config::Config;