mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-18 13:53:03 +01:00
13 lines
204 B
Go
13 lines
204 B
Go
|
package nip31
|
||
|
|
||
|
import "github.com/nbd-wtf/go-nostr"
|
||
|
|
||
|
func GetAlt(event nostr.Event) string {
|
||
|
for _, tag := range event.Tags {
|
||
|
if len(tag) >= 2 && tag[0] == "alt" {
|
||
|
return tag[1]
|
||
|
}
|
||
|
}
|
||
|
return ""
|
||
|
}
|