diff options
author | Thomas Boerger <tboerger@suse.de> | 2016-11-07 16:02:19 +0100 |
---|---|---|
committer | Thomas Boerger <tboerger@suse.de> | 2016-11-07 16:10:32 +0100 |
commit | 4c6c16f358a67d31b1cde8642d4175a336fdcbf0 (patch) | |
tree | 1d6b23c470779563bcbdcc19129bf8c93a5d55f3 /models/pull.go | |
parent | 77f9c7e5715024aaf839bfd029eb951fad2e97d5 (diff) | |
download | gitea-4c6c16f358a67d31b1cde8642d4175a336fdcbf0.tar.gz gitea-4c6c16f358a67d31b1cde8642d4175a336fdcbf0.zip |
Replaced go-gogs-client with go-sdk imports
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index ae508103d0..31d6589f16 100644 --- a/models/pull.go +++ b/models/pull.go @@ -18,7 +18,7 @@ import ( "github.com/go-gitea/gitea/modules/sync" "github.com/go-xorm/xorm" "github.com/go-gitea/git" - api "github.com/gogits/go-gogs-client" + api "github.com/go-gitea/go-sdk/gitea" ) var PullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLength) |