CustomBinder An interface to register custom binders.
| 17 | |
| 18 | // CustomBinder An interface to register custom binders. |
| 19 | type CustomBinder interface { |
| 20 | Name() string |
| 21 | MIMETypes() []string |
| 22 | Parse(c Ctx, out any) error |
| 23 | } |
| 24 | |
| 25 | // StructValidator is an interface to register custom struct validator for binding. |
| 26 | type StructValidator interface { |
no outgoing calls
no test coverage detected