(ctx context.Context, key string)
| 65 | } |
| 66 | |
| 67 | func (b readOnlyFilesystemBackend) Stat(ctx context.Context, key string) (fstable.Entry, error) { |
| 68 | return b.backend.Stat(ctx, key) |
| 69 | } |
| 70 | |
| 71 | func (b readOnlyFilesystemBackend) Get(ctx context.Context, key string) (io.ReadCloser, fstable.Entry, error) { |
| 72 | return b.backend.Get(ctx, key) |