stormchaser-engine 0.1.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
12
13
14
15
16
17
18
//! Intrinsic step types that are built into the Stormchaser engine.

/// Email sending step.
pub mod email;
/// Built-in git checkout operations.
pub mod git_checkout;
/// Jinja template evaluation step.
pub mod jinja;
/// JQ JSON processing step.
pub mod jq;
/// AWS Lambda function execution step.
pub mod lambda;
/// JUnit test report email step.
pub mod test_report_email;
/// WebAssembly module execution step.
pub mod wasm;
/// HTTP Webhook dispatching step.
pub mod webhook;