Loader is a test implementation of blobserver.Loader. Its zero value is ready for use, but callers empirically (historically) have used the NewLoader constructor, despite it being kinda useless.
| 35 | // Its zero value is ready for use, but callers empirically (historically) have |
| 36 | // used the NewLoader constructor, despite it being kinda useless. |
| 37 | type Loader struct { |
| 38 | mu sync.Mutex |
| 39 | sto map[string]blobserver.Storage |
| 40 | } |
| 41 | |
| 42 | var _ blobserver.Loader = (*Loader)(nil) |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected