(ctx context.Context, name string, keypath backend.KeyPath, _ *backend.CacheInfo)
| 174 | } |
| 175 | |
| 176 | func (rw *readerWriter) Delete(ctx context.Context, name string, keypath backend.KeyPath, _ *backend.CacheInfo) error { |
| 177 | keypath = backend.KeyPathWithPrefix(keypath, rw.cfg.Prefix) |
| 178 | return readError(rw.bucket.Object(backend.ObjectFileName(keypath, name)).Delete(ctx)) |
| 179 | } |
| 180 | |
| 181 | // List implements backend.Reader |
| 182 | func (rw *readerWriter) List(ctx context.Context, keypath backend.KeyPath) ([]string, error) { |
nothing calls this directly
no test coverage detected