2017-11-13 00:02:25 -07: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 04:21:34 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-11-13 00:02:25 -07:00
|
|
|
)
|
|
|
|
|
2018-05-31 05:13:55 -06:00
|
|
|
// ServerVersion
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:response ServerVersion
|
|
|
|
type swaggerResponseServerVersion struct {
|
|
|
|
// in:body
|
|
|
|
Body api.ServerVersion `json:"body"`
|
|
|
|
}
|