Files
nostrlib/nip31/nip31.go

13 lines
197 B
Go

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