aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/cache
diff options
context:
space:
mode:
authorSantiago M. Mola <santi@mola.io>2017-03-10 12:36:01 +0100
committerGitHub <noreply@github.com>2017-03-10 12:36:01 +0100
commit4eef16a98d093057f1e4c560da4ed3bbba67cd76 (patch)
treee09571ad1687f6ce747b6956728997e05432e0a9 /plumbing/cache
parentf64e4b856865bc37f45e55ef094060481b53928e (diff)
parent8df64141e32abd9bd07d5dfd917c76a8a6dbe3f6 (diff)
downloadgo-git-4eef16a98d093057f1e4c560da4ed3bbba67cd76.tar.gz
Merge pull request #303 from ajnavarro/fix/gopkg-in
project: move imports from srcd.works to gopkg.in
Diffstat (limited to 'plumbing/cache')
-rw-r--r--plumbing/cache/common.go2
-rw-r--r--plumbing/cache/object.go2
-rw-r--r--plumbing/cache/object_test.go2
-rw-r--r--plumbing/cache/queue.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/plumbing/cache/common.go b/plumbing/cache/common.go
index 8da5fb8..7b90c55 100644
--- a/plumbing/cache/common.go
+++ b/plumbing/cache/common.go
@@ -1,6 +1,6 @@
package cache
-import "srcd.works/go-git.v4/plumbing"
+import "gopkg.in/src-d/go-git.v4/plumbing"
const (
Byte FileSize = 1 << (iota * 10)
diff --git a/plumbing/cache/object.go b/plumbing/cache/object.go
index f1af4e3..44238ce 100644
--- a/plumbing/cache/object.go
+++ b/plumbing/cache/object.go
@@ -1,6 +1,6 @@
package cache
-import "srcd.works/go-git.v4/plumbing"
+import "gopkg.in/src-d/go-git.v4/plumbing"
const (
initialQueueSize = 20
diff --git a/plumbing/cache/object_test.go b/plumbing/cache/object_test.go
index e0d601a..80cd17b 100644
--- a/plumbing/cache/object_test.go
+++ b/plumbing/cache/object_test.go
@@ -4,7 +4,7 @@ import (
"io"
"testing"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
. "gopkg.in/check.v1"
)
diff --git a/plumbing/cache/queue.go b/plumbing/cache/queue.go
index 8c6d7d3..85413e0 100644
--- a/plumbing/cache/queue.go
+++ b/plumbing/cache/queue.go
@@ -1,6 +1,6 @@
package cache
-import "srcd.works/go-git.v4/plumbing"
+import "gopkg.in/src-d/go-git.v4/plumbing"
// queue is a basic FIFO queue based on a circular list that resize as needed.
type queue struct {