Files
kopia/dir/hashcache.go
2016-03-27 13:11:24 -07:00

17 lines
241 B
Go

package dir
import "github.com/kopia/kopia/content"
type cachedListing struct {
Listing
objectID content.ObjectID
}
type hashCache struct {
}
func (hc hashCache) GetCachedListing(path string) cachedListing {
return cachedListing{}
}