2017-11-13 10:02:25 +03:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-11-13 10:02:25 +03:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
2019-05-11 13:21:34 +03:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-11-13 10:02:25 +03:00
|
|
|
)
|
|
|
|
|
2018-05-31 14:13:55 +03:00
|
|
|
// ServerVersion
|
2017-11-13 10:02:25 +03:00
|
|
|
// swagger:response ServerVersion
|
|
|
|
type swaggerResponseServerVersion struct {
|
|
|
|
// in:body
|
|
|
|
Body api.ServerVersion `json:"body"`
|
|
|
|
}
|
2020-06-04 12:16:53 +03:00
|
|
|
|
|
|
|
// StringSlice
|
|
|
|
// swagger:response StringSlice
|
|
|
|
type swaggerResponseStringSlice struct {
|
|
|
|
// in:body
|
|
|
|
Body []string `json:"body"`
|
|
|
|
}
|