Core components of the web application. https://write.as
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
295 B

  1. package activitystreams
  2. type (
  3. PublicKey struct {
  4. ID string `json:"id"`
  5. Owner string `json:"owner"`
  6. PublicKeyPEM string `json:"publicKeyPem"`
  7. }
  8. Image struct {
  9. Type string `json:"type"`
  10. MediaType string `json:"mediaType"`
  11. URL string `json:"url"`
  12. }
  13. )