code.gitea.io/gitea@v1.21.7/routers/api/v1/swagger/activitypub.go (about)

     1  // Copyright 2022 The Gitea Authors. All rights reserved.
     2  // SPDX-License-Identifier: MIT
     3  
     4  package swagger
     5  
     6  import (
     7  	api "code.gitea.io/gitea/modules/structs"
     8  )
     9  
    10  // ActivityPub
    11  // swagger:response ActivityPub
    12  type swaggerResponseActivityPub struct {
    13  	// in:body
    14  	Body api.ActivityPub `json:"body"`
    15  }