grain/relay/handlers/ok.go

13 lines
312 B
Go
Raw Normal View History

2024-07-24 21:00:59 +00:00
package handlers
import (
"encoding/json"
"golang.org/x/net/websocket"
)
func sendOK(ws *websocket.Conn, eventID string, status bool, message string) {
response := []interface{}{"OK", eventID, status, message}
responseBytes, _ := json.Marshal(response)
websocket.Message.Send(ws, string(responseBytes))
}