Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
607 B
24 lines
607 B
// 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. |
|
|
|
package gitea |
|
|
|
// MarkdownOption markdown options |
|
type MarkdownOption struct { |
|
Text string |
|
Mode string |
|
Context string |
|
Wiki bool |
|
} |
|
|
|
// ServerVersion wraps the version of the server |
|
type ServerVersion struct { |
|
Version string |
|
} |
|
|
|
// ServerVersion returns the version of the server |
|
func (c *Client) ServerVersion() (string, error) { |
|
v := ServerVersion{} |
|
return v.Version, c.getParsedResponse("GET", "/api/v1/version", nil, nil, &v) |
|
}
|
|
|