mirror of https://github.com/go-gitea/gitea.git
17 lines
361 B
Go
17 lines
361 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// NodeInfo
|
|
// swagger:response NodeInfo
|
|
type swaggerResponseNodeInfo struct {
|
|
// in:body
|
|
Body api.NodeInfo `json:"body"`
|
|
}
|