@wmfs/tymly
Version:
A framework for building and sharing workflows in Node.js
22 lines (20 loc) • 386 B
JavaScript
const firstPass = require('./first-pass')
const secondPass = require('./second-pass')
const thirdPass = require('./third-pass')
module.exports = {
firstPass,
secondPass: async (
loadedComponents,
bootedServices,
messages
) => {
await secondPass(
loadedComponents,
bootedServices,
messages
)
thirdPass(
loadedComponents
)
}
}