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