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
export const meta = {
  name: 'function-stack-error',
  description: 'Exercise stack traces for default function errors',
};

function fail() {
  throw new Error('boom from function');
}

export default async function workflow() {
  fail();
}