sc-helloworld/index.mjs

5 lines
182 B
JavaScript
Raw Normal View History

2020-09-09 14:32:23 +00:00
export function start(config, db, log, core, http, port) {
2020-09-04 11:03:59 +00:00
return import('./api/server.mjs').then(function(module) {
2020-09-09 14:32:23 +00:00
return module.run(config, db, log, core, http, port)
2020-09-04 11:03:59 +00:00
})
}