(key string, value interface{}, expiration *time.Duration)
| 12 | type Cache interface { |
| 13 | Get(key string) (string, error) |
| 14 | Set(key string, value interface{}, expiration *time.Duration) error |
| 15 | } |
| 16 | |
| 17 | type RedisCache struct { |
no outgoing calls
no test coverage detected