sc-manager/index.mjs
2020-09-08 07:53:42 +00:00

5 lines
No EOL
158 B
JavaScript

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