commandHook implements the redis.Hook interface to record commands.
| 62 | |
| 63 | // commandHook implements the redis.Hook interface to record commands. |
| 64 | type commandHook struct { |
| 65 | recorder *commandRecorder |
| 66 | } |
| 67 | |
| 68 | func (h *commandHook) DialHook(next redis.DialHook) redis.DialHook { |
| 69 | return next |
nothing calls this directly
no outgoing calls
no test coverage detected