Quality of life improvements
Changes to the router configuration
Route not found handler
Override the RouteNotFoundHandler to change default behavior.
//RouterConfiguration is a straightforward place to override default behavior of the router
type RouterConfiguration struct {
//RouteNotFoundHandler gets invoked, when the specified URL and method have no handlers
RouteNotFoundHandler Endpoint
}http.Server
On the router you now got direct access to the http.Server
err := router.Server.Shutdown(context.Background())