(req *http.Request, obj any)
| 21 | } |
| 22 | |
| 23 | func (msgpackBinding) Bind(req *http.Request, obj any) error { |
| 24 | return decodeMsgPack(req.Body, obj) |
| 25 | } |
| 26 | |
| 27 | func (msgpackBinding) BindBody(body []byte, obj any) error { |
| 28 | return decodeMsgPack(bytes.NewReader(body), obj) |
nothing calls this directly
no test coverage detected