mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-27 18:22:08 +01:00
12 lines
337 B
Go
12 lines
337 B
Go
package nip11
|
|
|
|
type RelayInformationDocument struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
PubKey string `json:"pubkey"`
|
|
Contact string `json:"contact"`
|
|
SupportedNIPs []int `json:"supported_nips"`
|
|
Software string `json:"software"`
|
|
Version string `json:"version"`
|
|
}
|