mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-17 21:32:56 +01:00
21 lines
525 B
Go
21 lines
525 B
Go
package nostr
|
|
|
|
type ProfilePointer struct {
|
|
PublicKey string `json:"pubkey"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
}
|
|
|
|
type EventPointer struct {
|
|
ID string `json:"id"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
Author string `json:"author,omitempty"`
|
|
Kind int `json:"kind,omitempty"`
|
|
}
|
|
|
|
type EntityPointer struct {
|
|
PublicKey string `json:"pubkey"`
|
|
Kind int `json:"kind,omitempty"`
|
|
Identifier string `json:"identifier,omitempty"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
}
|