2015-12-04 22:10:37 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-11-07 01:57:49 +00:00
|
|
|
package gitea
|
2015-12-04 22:10:37 +00:00
|
|
|
|
2019-05-11 16:38:52 +01:00
|
|
|
import "code.gitea.io/gitea/modules/structs"
|
2017-03-03 14:45:18 +00:00
|
|
|
|
2017-03-03 14:55:07 +00:00
|
|
|
// ServerVersion returns the version of the server
|
2017-03-03 14:45:18 +00:00
|
|
|
func (c *Client) ServerVersion() (string, error) {
|
2019-05-11 16:38:52 +01:00
|
|
|
v := structs.ServerVersion{}
|
2017-11-12 09:10:33 +00:00
|
|
|
return v.Version, c.getParsedResponse("GET", "/api/v1/version", nil, nil, &v)
|
2017-03-03 14:45:18 +00:00
|
|
|
}
|