aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-02-21 14:53:30 +0100
committerAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-02-21 14:55:58 +0100
commit6e15f9cb0dbac68992eb242282e725784fe72b32 (patch)
tree04246d19a1c4814752599ff8d02da35c09f1dc20
parent0b8b8da617d5a077f282e57d0300dc106a604236 (diff)
downloadgo-git-6e15f9cb0dbac68992eb242282e725784fe72b32.tar.gz
cache: move package to plumbing
Because cache package is only intended to be used at internal level, we move it to the plumbing package.
-rw-r--r--plumbing/cache/common.go (renamed from cache/common.go)0
-rw-r--r--plumbing/cache/object.go (renamed from cache/object.go)0
-rw-r--r--plumbing/cache/object_test.go (renamed from cache/object_test.go)0
-rw-r--r--plumbing/cache/queue.go (renamed from cache/queue.go)0
-rw-r--r--plumbing/format/packfile/decoder.go2
5 files changed, 1 insertions, 1 deletions
diff --git a/cache/common.go b/plumbing/cache/common.go
index 33fb2bc..33fb2bc 100644
--- a/cache/common.go
+++ b/plumbing/cache/common.go
diff --git a/cache/object.go b/plumbing/cache/object.go
index 47e390b..47e390b 100644
--- a/cache/object.go
+++ b/plumbing/cache/object.go
diff --git a/cache/object_test.go b/plumbing/cache/object_test.go
index 7d00970..7d00970 100644
--- a/cache/object_test.go
+++ b/plumbing/cache/object_test.go
diff --git a/cache/queue.go b/plumbing/cache/queue.go
index 8c6d7d3..8c6d7d3 100644
--- a/cache/queue.go
+++ b/plumbing/cache/queue.go
diff --git a/plumbing/format/packfile/decoder.go b/plumbing/format/packfile/decoder.go
index 475d24d..4e102c7 100644
--- a/plumbing/format/packfile/decoder.go
+++ b/plumbing/format/packfile/decoder.go
@@ -3,8 +3,8 @@ package packfile
import (
"bytes"
- "srcd.works/go-git.v4/cache"
"srcd.works/go-git.v4/plumbing"
+ "srcd.works/go-git.v4/plumbing/cache"
"srcd.works/go-git.v4/plumbing/storer"
)