(format string, args ...interface{})
| 74 | } |
| 75 | |
| 76 | func NewErrorf(format string, args ...interface{}) *Resp { |
| 77 | return NewError([]byte(fmt.Sprintf(format, args...))) |
| 78 | } |
| 79 | |
| 80 | func NewInt(value []byte) *Resp { |
| 81 | r := &Resp{} |
nothing calls this directly
no test coverage detected