Files
web-core-fr-gp/activitystreams/data.go
T

16 lines
295 B
Go

package activitystreams
type (
PublicKey struct {
ID string `json:"id"`
Owner string `json:"owner"`
PublicKeyPEM string `json:"publicKeyPem"`
}
Image struct {
Type string `json:"type"`
MediaType string `json:"mediaType"`
URL string `json:"url"`
}
)