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

17 lines
413 B
Go
Raw Normal View History

2025-09-28 01:53:09 +00:00
package controller
import (
"github.com/rs/zerolog"
2025-09-30 13:34:56 +00:00
"netidhub-saas-be/app/module/custom_static_pages/service"
2025-09-28 01:53:09 +00:00
)
type Controller struct {
CustomStaticPages CustomStaticPagesController
}
func NewController(CustomStaticPagesService service.CustomStaticPagesService, log zerolog.Logger) *Controller {
return &Controller{
CustomStaticPages: NewCustomStaticPagesController(CustomStaticPagesService, log),
}
}