(req *http.Request, obj any)
| 18 | } |
| 19 | |
| 20 | func (xmlBinding) Bind(req *http.Request, obj any) error { |
| 21 | return decodeXML(req.Body, obj) |
| 22 | } |
| 23 | |
| 24 | func (xmlBinding) BindBody(body []byte, obj any) error { |
| 25 | return decodeXML(bytes.NewReader(body), obj) |
nothing calls this directly
no test coverage detected