If I add the options in this order, the Grouper option is not working:
route.Grouper(routerInput.Groups),
route.Precedence(routerInput.Precedences),
If I add the options in this order, the Grouper option is working as expected:
route.Precedence(routerInput.Precedences),
route.Grouper(routerInput.Groups),