mirror of
https://github.com/ragestudio/linebridge.git
synced 2025-06-09 10:34:17 +00:00
12 lines
285 B
JavaScript
Executable File
12 lines
285 B
JavaScript
Executable File
#!/usr/bin/env EXPERIMENTAL_FASTCALL=1 node
|
|
const corenode = require("corenode")
|
|
|
|
corenode.runInNewRuntime(async () => {
|
|
const { Server } = require("../server/index.js")
|
|
|
|
const instance = new Server({
|
|
id: process.env.serverID,
|
|
})
|
|
|
|
await instance.initialize()
|
|
}) |