diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-07 12:58:18 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-07 12:58:18 +0100 |
commit | 33e7c165c9fb5594821005b7ee55826e5a305487 (patch) | |
tree | 2f858902843f22379c80512c4b2f2dc1221723ad /plumbing/cache | |
parent | f64e4b856865bc37f45e55ef094060481b53928e (diff) | |
download | go-git-33e7c165c9fb5594821005b7ee55826e5a305487.tar.gz |
project: move imports from srcd.works to gopkg.in
To be able to fix #261 we will move again to gopkg.in before v4 stable release.
Diffstat (limited to 'plumbing/cache')
-rw-r--r-- | plumbing/cache/common.go | 2 | ||||
-rw-r--r-- | plumbing/cache/object.go | 2 | ||||
-rw-r--r-- | plumbing/cache/object_test.go | 2 | ||||
-rw-r--r-- | plumbing/cache/queue.go | 2 |
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 { |