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