Files
nostrlib/nip86/responses.go
2025-07-07 12:28:29 -03:00

19 lines
314 B
Go

package nip86
import "fiatjaf.com/nostr"
type IDReason struct {
ID string `json:"id"`
Reason string `json:"reason"`
}
type PubKeyReason struct {
PubKey nostr.PubKey `json:"pubkey"`
Reason string `json:"reason"`
}
type IPReason struct {
IP string `json:"ip"`
Reason string `json:"reason"`
}