nfp_sites/dev.mjs

10 lines
227 B
JavaScript
Raw Normal View History

2022-04-05 14:43:23 +00:00
import { ServiceCore } from 'service-core'
import * as index from './index.mjs'
var core = new ServiceCore('nfp_moe', import.meta.url)
core.setConfig({
port: 4030,
})
core.init(index).then(function() {
return core.run()
})