smol-workflow-engine 0.3.1

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const meta = {
  name: "parallel-errors",
  description: "Exercise parallel error handling",
};

export default await parallel([
  () => agent('ok:first'),
  () => {
    throw new Error('boom')
  },
  async () => {
    throw new Error('async boom')
  },
  () => agent('ok:last'),
])