kontenhumas-be/app/module/menu_actions/controller/controller.go

17 lines
315 B
Go

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),
}
}