Merge pull request #26 from metalmatze/golanglint-ci-fixes

Fix default golanglint-ci errors
This commit is contained in:
saml-dev
2025-01-17 21:25:44 -05:00
committed by GitHub
6 changed files with 13 additions and 10 deletions

2
app.go
View File

@@ -302,7 +302,7 @@ func (a *App) Start() {
// entity listeners and event listeners
elChan := make(chan ws.ChanMsg)
go ws.ListenWebsocket(a.conn, a.ctx, elChan)
go ws.ListenWebsocket(a.conn, elChan)
for {
msg, ok := <-elChan