A typical Yii2 route to any action in a module controller is as follows:
<moduleID>/<controllerID>/<actionID>
How do we configure/structure our module (which has only 1 controller) so that we may reach its actions directly using the following route:
<moduleID>/<actionID>
without having to override the routes in the main application's urlManager?