()
| 36 | } |
| 37 | |
| 38 | func newMockCacheRecon() *mockCacheRecon { |
| 39 | return &mockCacheRecon{data: make(map[string]interface{})} |
| 40 | } |
| 41 | |
| 42 | func (m *mockCacheRecon) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error { |
| 43 | m.data[key] = value |
no outgoing calls
no test coverage detected