aboutsummaryrefslogtreecommitdiffstats
path: root/cache
diff options
context:
space:
mode:
Diffstat (limited to 'cache')
-rw-r--r--cache/common.go2
-rw-r--r--cache/object.go2
-rw-r--r--cache/object_test.go2
-rw-r--r--cache/queue.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/cache/common.go b/cache/common.go
index bd2f1c3..33fb2bc 100644
--- a/cache/common.go
+++ b/cache/common.go
@@ -1,6 +1,6 @@
package cache
-import "gopkg.in/src-d/go-git.v4/plumbing"
+import "srcd.works/go-git.v4/plumbing"
const (
Byte = 1 << (iota * 10)
diff --git a/cache/object.go b/cache/object.go
index cd57030..47e390b 100644
--- a/cache/object.go
+++ b/cache/object.go
@@ -1,6 +1,6 @@
package cache
-import "gopkg.in/src-d/go-git.v4/plumbing"
+import "srcd.works/go-git.v4/plumbing"
const (
initialQueueSize = 20
diff --git a/cache/object_test.go b/cache/object_test.go
index 91aba8f..7d00970 100644
--- a/cache/object_test.go
+++ b/cache/object_test.go
@@ -4,7 +4,7 @@ import (
"io"
"testing"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "srcd.works/go-git.v4/plumbing"
. "gopkg.in/check.v1"
)
diff --git a/cache/queue.go b/cache/queue.go
index 85413e0..8c6d7d3 100644
--- a/cache/queue.go
+++ b/cache/queue.go
@@ -1,6 +1,6 @@
package cache
-import "gopkg.in/src-d/go-git.v4/plumbing"
+import "srcd.works/go-git.v4/plumbing"
// queue is a basic FIFO queue based on a circular list that resize as needed.
type queue struct {