mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 08:37:13 +00:00
12 lines
330 B
Go
12 lines
330 B
Go
package kinds
|
|
|
|
import (
|
|
"context"
|
|
relay "grain/relay/types"
|
|
|
|
"golang.org/x/net/websocket"
|
|
)
|
|
func HandleKind2Deprecated(ctx context.Context, evt relay.Event, ws *websocket.Conn) error {
|
|
sendNotice(ws, evt.PubKey, "kind 2 is deprecated, event not accepted to the relay, please use kind 10002 as defined in NIP-65")
|
|
return nil
|
|
} |