| 20 | var ctx = context.Background() |
| 21 | |
| 22 | type cache struct { |
| 23 | bucket *storage.BucketHandle |
| 24 | prefix string |
| 25 | } |
| 26 | |
| 27 | func (c *cache) Get(key string) ([]byte, bool) { |
| 28 | r, err := c.object(key).NewReader(ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected