mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-17 13:22:56 +01:00
17 lines
274 B
Go
17 lines
274 B
Go
package nip86
|
|
|
|
type IDReason struct {
|
|
ID string `json:"id"`
|
|
Reason string `json:"reason"`
|
|
}
|
|
|
|
type PubKeyReason struct {
|
|
PubKey string `json:"pubkey"`
|
|
Reason string `json:"reason"`
|
|
}
|
|
|
|
type IPReason struct {
|
|
IP string `json:"ip"`
|
|
Reason string `json:"reason"`
|
|
}
|