RedisProxy redisProxy
| 9 | |
| 10 | //RedisProxy redisProxy |
| 11 | type RedisProxy struct { |
| 12 | redisClient redis.Cmdable |
| 13 | } |
| 14 | |
| 15 | //Ping ping |
| 16 | func (p *RedisProxy) Ping() redis2.StatusCmd { return p.redisClient.Ping() } |
nothing calls this directly
no outgoing calls
no test coverage detected