Fix PluginApi.webserver being undefined

cshd
Dragory 2021-01-07 20:15:25 +02:00
parent 7758408fab
commit dc3a1a05d3
No known key found for this signature in database
GPG Key ID: 5F387BA66DF8AAC1
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ const logs = require("./data/logs");
const { beforeNewThread } = require("./hooks/beforeNewThread"); const { beforeNewThread } = require("./hooks/beforeNewThread");
const { afterThreadClose } = require("./hooks/afterThreadClose"); const { afterThreadClose } = require("./hooks/afterThreadClose");
const formats = require("./formatters"); const formats = require("./formatters");
const { server: webserver } = require("./modules/webserver"); const webserver = require("./modules/webserver");
const childProcess = require("child_process"); const childProcess = require("child_process");
const pacote = require("pacote"); const pacote = require("pacote");
const path = require("path"); const path = require("path");