gitea源码

activitypub.go 246B

1234567891011
  1. // Copyright 2022 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // ActivityPub type
  5. type ActivityPub struct {
  6. // Context defines the JSON-LD context for ActivityPub
  7. Context string `json:"@context"`
  8. }