Open
Description
Implementing a custom Router is a pain ATM, due to all the route matching utilities being internal
and the handlers being constrained to Type
.
- The routing utilities (
RouteContext
,RouteEntry
,RouteTable
, ...) should bepublic
. -
RouteContext.Handler
needs to be of typeobject
to allow implementing custom handlers.