aboutsummaryrefslogtreecommitdiffstats
path: root/cache
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
commit85a4efcc45312f022111907d82c5cc4ee3bdbb73 (patch)
tree2664a776225ba29d70b1dfcb4e89365f7682007d /cache
parent30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff)
downloadgo-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz
new srcd.works/go-git.v4 path
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 {