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