easynode/server/app/main.js
2024-11-09 23:14:51 +08:00

14 lines
282 B
JavaScript

const { httpServer } = require('./server')
const initDB = require('./db')
const scheduleJob = require('./schedule')
const getLicenseInfo = require('./utils/get-plus')
async function main() {
await initDB()
httpServer()
scheduleJob()
getLicenseInfo()
}
main()