Finally make the stupid pre/post processors work

This commit is contained in:
David Majdandžić
2023-04-05 17:19:53 +02:00
parent 7a4aa1eb9c
commit d032239105
9 changed files with 58 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ const WebSocket = require("ws");
const WS_SERVER_PORT: number = Number(process.env.WS_SERVER_PORT) || 8191;
export class WSServer {
export default class WSServer {
private readonly clients: ClientSet[];
private readonly unknownClients: any[];
private readonly server: any;