grain/relay/handlers/kinds/notice.go

14 lines
280 B
Go

package kinds
import (
"encoding/json"
"golang.org/x/net/websocket"
)
func SendNotice(ws *websocket.Conn, pubKey, message string) {
notice := []interface{}{"NOTICE", pubKey, message}
noticeBytes, _ := json.Marshal(notice)
websocket.Message.Send(ws, string(noticeBytes))
}