1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Merge pull request #108 from go-gitea/go-sdk

Replaced gogits go-gogs-client with go-sdk
This commit is contained in:
Thomas Boerger
2016-11-07 16:31:17 +01:00
committed by GitHub
68 changed files with 78 additions and 89 deletions

View File

@@ -4,7 +4,7 @@
package base
const DOC_URL = "https://github.com/gogits/go-gogs-client/wiki"
const DocURL = "https://godoc.org/github.com/go-gitea/go-sdk/gitea"
type (
TplName string

View File

@@ -36,7 +36,7 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) {
ctx.JSON(status, map[string]string{
"message": message,
"url": base.DOC_URL,
"url": base.DocURL,
})
}