| 61 | } |
| 62 | |
| 63 | type mutatingStorage struct { |
| 64 | data map[string][]byte |
| 65 | mutate func(key string, value []byte) []byte |
| 66 | } |
| 67 | |
| 68 | func newFailingCacheStorage() *failingCacheStorage { |
| 69 | return &failingCacheStorage{ |
nothing calls this directly
no outgoing calls
no test coverage detected