UNPKG

@wmfs/tymly

Version:

A framework for building and sharing workflows in Node.js

17 lines (13 loc) 324 B
'use strict' class TestService1 { boot (options) { this.testService3 = options.bootedServices.testService3 this.testService3.bootOrder.push('testService1') } async shutdown () { this.testService3.shutdownOrder.push('testService1') } } module.exports = { serviceClass: TestService1 }