I have this routes: ```go r.GET("/drivers/price", ctrl.GetDriversPrice) r.GET("/drivers/:id", ctrl.GetDriver) ``` So when I call http://.../drivers/price, I'm routed to ctrl.GetDriver. How can I make to get routed to ctrl.GetDriversPrice?