grain/relay/handlers/response/ok.go

13 lines
312 B
Go

package response
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))
}