Merge pull request #43 from typeless/server-version
Add new API 'ServerVersion'
This commit is contained in:
commit
8807a1d2ce
1 changed files with 11 additions and 0 deletions
|
@ -11,3 +11,14 @@ type MarkdownOption struct {
|
|||
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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue