Binder is the interface that wraps the Bind method.
| 19 | |
| 20 | // Binder is the interface that wraps the Bind method. |
| 21 | type Binder interface { |
| 22 | Bind(c *Context, target any) error |
| 23 | } |
| 24 | |
| 25 | // DefaultBinder is the default implementation of the Binder interface. |
| 26 | type DefaultBinder struct{} |
no outgoing calls
no test coverage detected
searching dependent graphs…