The mapping is as follows: ```go //limit 0:10 job.GET("/details/:id",globalManpowerDemandController.Details) job.GET("/:limit", globalManpowerDemandController.LimitManpowerDemand) ``` The error is as follows: ``` panic: wildcard segment ':limit' conflicts with existing children in path '/api/job/:limit' ``` At first glance these should be two different paths, but they are identified as conflicting. What should I do? ``` /details/:id /:limit ```