Files
timmy-config/go/pkg/mod/github.com/nbd-wtf/go-nostr@v0.49.6/nip14/subject.go
2026-03-31 20:02:01 +00:00

13 lines
204 B
Go

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