20 lines
267 B
Go
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
|
|
}
|