Hooks
This hook is called after inputs have been validated and before the route's handler is called.
When you return an object from the hook, the object is merged into the context for subsequent hooks and handlers.
A good use-case here is to get an object that is required for all routes added after the hook is registered:
"/", ,
"/:userId", ,
"/:userId", ,;
You can short-circuit the request life cycle by returning a Response object. All subsequent hooks and handlers will be skipped (except for onGlobalAfterResponse).
;