fliphub
Version:
the builder of builders
13 lines (11 loc) • 391 B
JavaScript
const {AbstractWorkflow} = require('fliphub-core')
const Context = require('./Context')
const CoreConfig = require('./configs/Core')
module.exports = class Workflow extends AbstractWorkflow {
constructor(core, config) {
const coreConfig = new CoreConfig(core)
super(core, coreConfig)
this.root = config.root
this.contextsFrom = this.contextsFrom.bind(this, Context)
}
}