| 55 | } |
| 56 | |
| 57 | type failingCacheStorage struct { |
| 58 | data map[string][]byte |
| 59 | errs map[string]error |
| 60 | mu sync.RWMutex |
| 61 | } |
| 62 | |
| 63 | type mutatingStorage struct { |
| 64 | data map[string][]byte |
nothing calls this directly
no outgoing calls
no test coverage detected