mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-17 21:32:56 +01:00
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
|
|
}
|