Files
Atay-Makhzan/routers/api/v1/swagger/misc.go
T

24 lines
513 B
Go
Raw Normal View History

2017-11-12 23:02:25 -08:00
// Copyright 2017 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 (
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
2017-11-12 23:02:25 -08:00
)
// ServerVersion
2017-11-12 23:02:25 -08:00
// swagger:response ServerVersion
type swaggerResponseServerVersion struct {
// in:body
Body api.ServerVersion `json:"body"`
}
2020-06-04 11:16:53 +02:00
// StringSlice
// swagger:response StringSlice
type swaggerResponseStringSlice struct {
// in:body
Body []string `json:"body"`
}