aboutsummaryrefslogtreecommitdiffstats
path: root/models/webhook.go
diff options
context:
space:
mode:
authorSandro Santilli <strk@kbt.io>2016-11-10 17:24:48 +0100
committerThibault Meyer <0xbaadf00d@users.noreply.github.com>2016-11-10 17:24:48 +0100
commit4247304f5aeb791e3e201947478eef4964744146 (patch)
tree47a27cdaafe235512921fb1aba4a5c6738e4c384 /models/webhook.go
parent1c0a4e166fc3c37ebed528fc41b1cbca5a00556d (diff)
downloadgitea-4247304f5aeb791e3e201947478eef4964744146.tar.gz
gitea-4247304f5aeb791e3e201947478eef4964744146.zip
Update import paths from github.com/go-gitea to code.gitea.io (#135)
- Update import paths from github.com/go-gitea to code.gitea.io - Fix import path for travis See https://docs.travis-ci.com/user/languages/go#Go-Import-Path
Diffstat (limited to 'models/webhook.go')
-rw-r--r--models/webhook.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/models/webhook.go b/models/webhook.go
index eb37338d2c..9ca217640b 100644
--- a/models/webhook.go
+++ b/models/webhook.go
@@ -15,12 +15,12 @@ import (
"github.com/go-xorm/xorm"
gouuid "github.com/satori/go.uuid"
- api "github.com/go-gitea/go-sdk/gitea"
+ api "code.gitea.io/go-sdk/gitea"
- "github.com/go-gitea/gitea/modules/httplib"
- "github.com/go-gitea/gitea/modules/log"
- "github.com/go-gitea/gitea/modules/setting"
- "github.com/go-gitea/gitea/modules/sync"
+ "code.gitea.io/gitea/modules/httplib"
+ "code.gitea.io/gitea/modules/log"
+ "code.gitea.io/gitea/modules/setting"
+ "code.gitea.io/gitea/modules/sync"
)
var HookQueue = sync.NewUniqueQueue(setting.Webhook.QueueLength)