mirror of
https://github.com/chaos-zhu/easynode.git
synced 2026-06-01 07:29:22 +08:00
15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
require('./logs')
|
|
const { createServer } = require('./server')
|
|
const initDB = require('./db')
|
|
const scheduleJob = require('./schedule')
|
|
const getLicenseInfo = require('./utils/get-plus')
|
|
|
|
async function main() {
|
|
await initDB()
|
|
createServer()
|
|
scheduleJob()
|
|
getLicenseInfo()
|
|
}
|
|
|
|
main()
|