(ctx context.Context, opts ...opOption)
| 125 | } |
| 126 | |
| 127 | func (s *noUpdateStore) FileMap(ctx context.Context, opts ...opOption) (map[string]file, error) { |
| 128 | if s.readOps != nil { |
| 129 | return s.readOps.FileMap(ctx, opts...) |
| 130 | } |
| 131 | return make(map[string]file), nil |
| 132 | } |
| 133 | |
| 134 | func (s *noUpdateStore) Put(ctx context.Context, f localFile, opts ...opOption) error { |
| 135 | return nil |