Decoder implements the decoder interface
| 121 | |
| 122 | // Decoder implements the decoder interface |
| 123 | type Decoder struct { |
| 124 | r *Reader |
| 125 | } |
| 126 | |
| 127 | // NewDecoder creates a RESP decoder |
| 128 | func NewDecoder(r io.Reader) *Decoder { |
nothing calls this directly
no outgoing calls
no test coverage detected