stormchaser-dsl 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
//! Workflow DSL parser for Stormchaser.
//!
//! This module provides parsing capabilities to translate HCL-based workflow
//! definitions into the internal `Workflow` model.

/// Abstract Syntax Tree components for the DSL.
pub mod ast;
pub mod hcl_schema;
pub mod parser;

pub use parser::StormchaserParser;