Files
easynode/server/app/main.js
2025-11-24 23:34:43 +08:00

15 lines
301 B
JavaScript

require('./logs')
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()