aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/packfile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-02-21 16:08:57 +0100
committerGitHub <noreply@github.com>2017-02-21 16:08:57 +0100
commite26a605c93d8085dfff8e440838fd3c43b63cff6 (patch)
tree7022e74d0fa7a3ab542eaa2df851e7f625e8f1ff /plumbing/format/packfile
parent73855d0a5f617bcda1f33e730f3bc7cf8afbef6c (diff)
parent6e15f9cb0dbac68992eb242282e725784fe72b32 (diff)
downloadgo-git-e26a605c93d8085dfff8e440838fd3c43b63cff6.tar.gz
Merge pull request #278 from ajnavarro/improvement/move-cache-to-plumbing
cache: move package to plumbing
Diffstat (limited to 'plumbing/format/packfile')
-rw-r--r--plumbing/format/packfile/decoder.go2
1 files changed, 1 insertions, 1 deletions
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"
)