Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
15 lines
301 B
Go
15 lines
301 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// ActivityPub
|
|
// swagger:response ActivityPub
|
|
type swaggerResponseActivityPub struct {
|
|
// in:body
|
|
Body api.ActivityPub `json:"body"`
|
|
}
|