code.gitea.io/gitea@v1.21.7/routers/api/v1/swagger/nodeinfo.go (about) 1 // Copyright 2021 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package swagger 5 6 import ( 7 api "code.gitea.io/gitea/modules/structs" 8 ) 9 10 // NodeInfo 11 // swagger:response NodeInfo 12 type swaggerResponseNodeInfo struct { 13 // in:body 14 Body api.NodeInfo `json:"body"` 15 }