refactor: merge SendMessage() into SendPermanentBroadCastMessage()

This commit is contained in:
Sebastian Mark 2024-11-21 08:43:02 +01:00
parent 064a720436
commit 1ed866bfe5
2 changed files with 2 additions and 7 deletions

View file

@ -19,9 +19,3 @@ type WebsocketClient struct {
LastPong time.Time
RealIP string
}
// Sends a message to the websocket.
func (c *WebsocketClient) SendMessage(messageType int, data []byte) error {
c.Conn.SetWriteDeadline(time.Now().Add(TIMEOUT * time.Second))
return c.Conn.WriteMessage(messageType, data)
}