stormchaser-model 1.3.0

A robust, distributed workflow engine for event-driven and human-triggered workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Domain-Specific Language (DSL) abstract syntax tree and types.

pub mod specs;
pub mod step;
pub mod storage;
pub mod workflow;

pub use specs::*;
pub use step::*;
pub use storage::*;
pub use workflow::*;