linstrom/ap/mention.go

11 lines
265 B
Go
Raw Normal View History

2024-01-31 16:56:07 +00:00
package ap
import "net/url"
// Tag type for mentions
type Mention struct {
Type string `json:"type"` // Should always be "Mention"
Href url.URL `json:"href"` // Url to mentioned account
Name string `json:"name"` // Name of the account ("@foo@example.com")
}