linstrom/ap/tag.go
2024-01-30 11:26:41 +00:00

9 lines
236 B
Go

package ap
import "net/url"
type Tag struct {
Type string `json:"type"` // Should always be "Hashtag"
Href url.URL `json:"href"` // Url to that hashtag
Name string `json:"name"` // Name of the hashtag, example: "#some-hashtag"
}