5 lines
158 B
JavaScript
5 lines
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)
|
||
|
})
|
||
|
}
|