(body []byte, obj any)
| 25 | } |
| 26 | |
| 27 | func (plainBinding) BindBody(body []byte, obj any) error { |
| 28 | return decodePlain(body, obj) |
| 29 | } |
| 30 | |
| 31 | func decodePlain(data []byte, obj any) error { |
| 32 | if obj == nil { |
nothing calls this directly
no test coverage detected