readonlyStorage prevents all mutations on the underlying storage.
| 14 | |
| 15 | // readonlyStorage prevents all mutations on the underlying storage. |
| 16 | type readonlyStorage struct { |
| 17 | base blob.Storage |
| 18 | blob.DefaultProviderImplementation |
| 19 | } |
| 20 | |
| 21 | func (s readonlyStorage) GetCapacity(ctx context.Context) (blob.Capacity, error) { |
| 22 | //nolint:wrapcheck |
nothing calls this directly
no outgoing calls
no test coverage detected