(c *Context, i any)
| 64 | } |
| 65 | |
| 66 | func (nestedJSONSerializer) Deserialize(c *Context, i any) error { |
| 67 | return (DefaultJSONSerializer{}).Deserialize(c, i) |
| 68 | } |
| 69 | |
| 70 | // TestGlobalMiddlewareRunsOnNotFoundAndMethodNotAllowed pins the dispatch contract: global (Use) and |
| 71 | // pre (Pre) middleware must execute even when the router returns 404 / 405 / OPTIONS handlers. |
nothing calls this directly
no test coverage detected