almost done, queue fix next

This commit is contained in:
2025-12-07 00:48:09 +01:00
parent 7a30adc2e8
commit de03c1fe3d
10 changed files with 414 additions and 319 deletions

View File

@@ -12,11 +12,8 @@ func NewGatewayController(cfg config.Config) GatewayController {
panic(err)
}
modHandler := ws.NewLoggingModHandler(wsl)
botHandler := ws.NewLoggingBotHandler(wsl)
return GatewayController{
Websocket: ws.NewWebsocketGateway(cfg.Gateway, wsl, wCloseFn, modHandler, botHandler),
Websocket: ws.NewWebsocketGateway(cfg.Gateway, wsl, wCloseFn),
HttpServer: HttpGateway{},
}
}