blob: 7b90c55f5b8658d0224e592c7a6c9d1c5090b1c3 [file] [log] [blame]
package cache
import "gopkg.in/src-d/go-git.v4/plumbing"
const (
Byte FileSize = 1 << (iota * 10)
KiByte
MiByte
GiByte
)
type FileSize int64
type Object interface {
Add(o plumbing.EncodedObject)
Get(k plumbing.Hash) plumbing.EncodedObject
Clear()
}