(ctx context.Context, key string)
| 24 | } |
| 25 | |
| 26 | func (b cacheInvalidatingFilesystemBackend) Stat(ctx context.Context, key string) (fstable.Entry, error) { |
| 27 | return b.backend.Stat(ctx, key) |
| 28 | } |
| 29 | |
| 30 | func (b cacheInvalidatingFilesystemBackend) Get(ctx context.Context, key string) (io.ReadCloser, fstable.Entry, error) { |
| 31 | return b.backend.Get(ctx, key) |