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