| 18 | ) |
| 19 | |
| 20 | type redisCache struct { |
| 21 | name string |
| 22 | client redis.UniversalClient |
| 23 | expire time.Duration |
| 24 | } |
| 25 | |
| 26 | const getTimeout = 2 * time.Second |
| 27 | const removeTimeout = 1 * time.Second |
nothing calls this directly
no outgoing calls
no test coverage detected