DefaultProviderImplementation provides a default implementation for common functions that are mostly provider independent and have a sensible default. Storage providers should embed this struct and override functions that they have different return values for.
| 158 | // Storage providers should embed this struct and override functions that they |
| 159 | // have different return values for. |
| 160 | type DefaultProviderImplementation struct{} |
| 161 | |
| 162 | // ExtendBlobRetention provides a common implementation for unsupported blob retention storage. |
| 163 | func (s DefaultProviderImplementation) ExtendBlobRetention(context.Context, ID, ExtendOptions) error { |
nothing calls this directly
no outgoing calls
no test coverage detected