2021-09-27 19:38:06 -04:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-27 19:38:06 -04: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"`
|
|
|
|
}
|