Last active
February 4, 2018 20:48
-
-
Save geomagilles/e2f00ad1e90a2cf88166692a21b08bd8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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