```go router.GET("/:something/", Blabla) router.GET("/:something/else", Bleble) router.GET("/:something/:different/:again", Blibli) ``` `panic: wildcard route ':different' conflicts with existing children in path '/:something/:different/:again'` Am I doing something wrong or is this simply not allowed?