2021-09-28 01:38:06 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-28 01:38:06 +02:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NodeInfo
|
|
|
|
// swagger:response NodeInfo
|
|
|
|
type swaggerResponseNodeInfo struct {
|
|
|
|
// in:body
|
|
|
|
Body api.NodeInfo `json:"body"`
|
|
|
|
}
|