11 lines
265 B
Go
11 lines
265 B
Go
|
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")
|
||
|
}
|