sc-helloworld/index.mjs

5 lines
170 B
JavaScript

export function start(config, db, log, core, http) {
return import('./api/server.mjs').then(function(module) {
return module.run(config, db, log, core, http)
})
}