| 28 | } |
| 29 | |
| 30 | type errorStorage struct { |
| 31 | err error |
| 32 | closeErr error |
| 33 | } |
| 34 | |
| 35 | func (s *errorStorage) GetWithContext(context.Context, string) ([]byte, error) { |
| 36 | return nil, s.err |
nothing calls this directly
no outgoing calls
no test coverage detected