package controller import ( "github.com/rs/zerolog" "go-humas-be/app/module/request_for_informations/service" ) type Controller struct { RequestForInformations RequestForInformationsController } func NewController(RequestForInformationsService service.RequestForInformationsService, log zerolog.Logger) *Controller { return &Controller{ RequestForInformations: NewRequestForInformationsController(RequestForInformationsService, log), } }