BindQuery is a shortcut for c.MustBindWith(obj, binding.Query).
(obj any)
| 771 | |
| 772 | // BindQuery is a shortcut for c.MustBindWith(obj, binding.Query). |
| 773 | func (c *Context) BindQuery(obj any) error { |
| 774 | return c.MustBindWith(obj, binding.Query) |
| 775 | } |
| 776 | |
| 777 | // BindYAML is a shortcut for c.MustBindWith(obj, binding.YAML). |
| 778 | func (c *Context) BindYAML(obj any) error { |