Files
nostrlib/nip31/nip31.go
2025-04-15 00:00:03 -03:00

13 lines
194 B
Go

package nip31
import "fiatjaf.com/nostr"
func GetAlt(event nostr.Event) string {
for _, tag := range event.Tags {
if len(tag) >= 2 && tag[0] == "alt" {
return tag[1]
}
}
return ""
}