package controller import ( "netidhub-saas-be/app/module/menu_actions/service" ) type Controller struct { MenuActions MenuActionsController } func NewController(menuActionsService service.MenuActionsService) *Controller { return &Controller{ MenuActions: NewMenuActionsController(menuActionsService), } }