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