Skip to main content

stormchaser_dsl/
lib.rs

1//! Workflow DSL parser for Stormchaser.
2//!
3//! This module provides parsing capabilities to translate HCL-based workflow
4//! definitions into the internal `Workflow` model.
5
6/// Abstract Syntax Tree components for the DSL.
7pub mod ast;
8pub mod hcl_schema;
9pub mod parser;
10
11pub use parser::StormchaserParser;