This commit is contained in:
2026-04-05 22:54:23 +02:00
parent e574f326b5
commit ee7a1c9d0f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const dataHandler = require('./datahandler');
const { logError, logInfo, logWarn } = require('./console');
const { serverConfig, configExists } = require('./server_config');
const pluginsApi = require('./plugins_api');
const { startServer, wss } = require("./web");
const { startServer, wss, rdsWss } = require("./web");
const client = new (require('net')).Socket();
+1 -1
View File
@@ -311,4 +311,4 @@ const startServer = (address) => {
});
};
module.exports = { startServer, wss };
module.exports = { startServer, wss, rdsWss };