stormchaser-model 1.4.2

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 connections;
pub mod specs;
pub mod step;
pub mod workflow;

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