jaecoo-be/app/module/education_history/controller/controller.go

14 lines
349 B
Go
Raw Normal View History

2025-11-15 15:46:24 +00:00
package controller
import "campaign-pool-be/app/module/education_history/service"
type Controller struct {
EducationHistory EducationHistoryController
}
func NewController(EducationHistoryService service.EducationHistoryService) *Controller {
return &Controller{
EducationHistory: NewEducationHistoryController(EducationHistoryService),
}
}