(body []byte, obj any)
| 25 | } |
| 26 | |
| 27 | func (msgpackBinding) BindBody(body []byte, obj any) error { |
| 28 | return decodeMsgPack(bytes.NewReader(body), obj) |
| 29 | } |
| 30 | |
| 31 | func decodeMsgPack(r io.Reader, obj any) error { |
| 32 | cdc := new(codec.MsgpackHandle) |
nothing calls this directly
no test coverage detected