go-nostr/pointers.go

20 lines
267 B
Go
Raw Normal View History

2023-02-05 16:25:00 -03:00
package nostr
type ProfilePointer struct {
PublicKey string
Relays []string
}
type EventPointer struct {
ID string
Relays []string
2023-03-17 09:09:36 -03:00
Author string
2023-02-05 16:25:00 -03:00
}
2023-02-27 16:15:04 -03:00
type EntityPointer struct {
PublicKey string
Kind int
Identifier string
Relays []string
}