aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/cache
diff options
context:
space:
mode:
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 {