aboutsummaryrefslogtreecommitdiffstats
path: root/cache/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/common.go')
-rw-r--r--cache/common.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/cache/common.go b/cache/common.go
deleted file mode 100644
index 33fb2bc..0000000
--- a/cache/common.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package cache
-
-import "srcd.works/go-git.v4/plumbing"
-
-const (
- Byte = 1 << (iota * 10)
- KiByte
- MiByte
- GiByte
-)
-
-type Object interface {
- Add(o plumbing.EncodedObject)
- Get(k plumbing.Hash) plumbing.EncodedObject
- Clear()
-}