| 89 | } |
| 90 | |
| 91 | type onDiskCache struct { |
| 92 | cacheDirectory string |
| 93 | } |
| 94 | |
| 95 | func (c *onDiskCache) Get(_ context.Context, blobID blob.ID) ([]byte, time.Time, bool) { |
| 96 | cachedFile := filepath.Join(c.cacheDirectory, string(blobID)) |
nothing calls this directly
no outgoing calls
no test coverage detected