Skip to content

Instantly share code, notes, and snippets.

@geomagilles
Last active February 4, 2018 20:48
Show Gist options
  • Save geomagilles/e2f00ad1e90a2cf88166692a21b08bd8 to your computer and use it in GitHub Desktop.
Save geomagilles/e2f00ad1e90a2cf88166692a21b08bd8 to your computer and use it in GitHub Desktop.
var { Workflow } = require("zenaton");
var TaskA = require("./TaskA");
var TaskB = require("./TaskB");
module.exports = Workflow("SequentialWorkflow", function() {
new TaskA().execute();
new TaskB().execute();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment