diff --git a/gitea/miscellaneous.go b/gitea/miscellaneous.go index bdb7ede..dc56177 100644 --- a/gitea/miscellaneous.go +++ b/gitea/miscellaneous.go @@ -12,10 +12,12 @@ type MarkdownOption struct { 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)