sc-helloworld/index.mjs

5 lines
158 B
JavaScript
Raw Permalink Normal View History

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