Skip to content

Commit

Permalink
fix: remove debug print statement from wsHandler function
Browse files Browse the repository at this point in the history
  • Loading branch information
dido18 committed Jan 13, 2025
1 parent 0ce39a5 commit ec5049d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ func wsHandler() *WsServer {
c := &connection{send: make(chan []byte, 256*10), ws: so}
h.register <- c
so.On("command", func(message string) {
fmt.Println("command:", message)
h.broadcast <- []byte(message)
})

Expand Down

0 comments on commit ec5049d

Please sign in to comment.