Resolver runs a `Resolve` function after a request has been parsed, enabling you to run custom validation or other code that can modify the request and / or return errors.
| 29 | // you to run custom validation or other code that can modify the request and / |
| 30 | // or return errors. |
| 31 | type Resolver interface { |
| 32 | Resolve(ctx Context) []error |
| 33 | } |
| 34 | |
| 35 | // ResolverWithPath runs a `Resolve` function after a request has been parsed, |
| 36 | // enabling you to run custom validation or other code that can modify the |
no outgoing calls
no test coverage detected
searching dependent graphs…