ozzo-routing icon indicating copy to clipboard operation
ozzo-routing copied to clipboard

An extremely fast Go (golang) HTTP router that supports regular expression route matching. Comes with full support for building RESTful APIs.

Results 12 ozzo-routing issues
Sort by recently updated
recently updated
newest added

I am missing the abillity to find out which route actually matched. The use case for this would be for example rendering a menu and highlighting the item matching the...

In [my case](https://github.com/fedulovivan/mhz19-go/blob/c759cc3a40695f24016575e449ed6ec5db828e64/internal/rest/rest.go#:~:text=cors.Handler) REST endpoint has a separate namespace defined with the **router.Group** like so: ```go rootRouter := routing.New() rootRouter.Use( slash.Remover(http.StatusMovedPermanently) ) apiGroup := rootRouter.Group("/api") apiGroup.Use( errorHandler, content.TypeNegotiator(content.JSON), cors.Handler(cors.AllowAll) //...