@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
19 lines (18 loc) • 1.13 kB
JavaScript
module.exports = {
parallel: require('./parallel-state-machine.json'),
parallelResults: require('./parallel-results-machine.json'),
funWithMath: require('./fun-with-math-state-machine.json'),
funWithMathWithInputPath: require('./fun-with-math-state-machine-with-input-path.json'),
funWithMathWithOutputPath: require('./fun-with-math-state-machine-with-output-path.json'),
funWithMathWithResultPath: require('./fun-with-math-state-machine-with-result-path.json'),
parallellingUp: require('./parallel-up.json'),
parallellingDown: require('./parallel-down.json'),
parallellingUpAndDown: require('./parallel-up-and-down.json'),
parallelFail: require('./parallel-fail-state-machine.json'),
parallellingUpFail: require('./parallel-up-fail.json'),
parallellingDownFail: require('./parallel-down-fail.json'),
parallellingUpAndDownFail: require('./parallel-up-and-down-fail.json'),
parallellingUpFailCatch: require('./parallel-up-fail-catch.json'),
parallellingDownFailCatch: require('./parallel-down-fail-catch.json'),
parallellingUpAndDownFailCatch: require('./parallel-up-and-down-fail-catch.json')
}