mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-20 06:41:47 +01:00
12 lines
146 B
Go
12 lines
146 B
Go
|
package nostr
|
||
|
|
||
|
type ProfilePointer struct {
|
||
|
PublicKey string
|
||
|
Relays []string
|
||
|
}
|
||
|
|
||
|
type EventPointer struct {
|
||
|
ID string
|
||
|
Relays []string
|
||
|
}
|