go-nostr/pointers.go
2023-03-17 09:09:36 -03:00

20 lines
267 B
Go

package nostr
type ProfilePointer struct {
PublicKey string
Relays []string
}
type EventPointer struct {
ID string
Relays []string
Author string
}
type EntityPointer struct {
PublicKey string
Kind int
Identifier string
Relays []string
}