Files
nostrlib/nip14/subject.go

13 lines
197 B
Go

package nip14
import "fiatjaf.com/nostrlib"
func GetSubject(tags nostr.Tags) string {
for _, tag := range tags {
if len(tag) >= 2 && tag[0] == "subject" {
return tag[1]
}
}
return ""
}