go-nostr/pointers.go
2023-02-05 16:25:00 -03:00

12 lines
146 B
Go

package nostr
type ProfilePointer struct {
PublicKey string
Relays []string
}
type EventPointer struct {
ID string
Relays []string
}