narasiahli-be/app/module/user_levels/controller/controller.go

14 lines
299 B
Go

package controller
import "narasi-ahli-be/app/module/user_levels/service"
type Controller struct {
UserLevels UserLevelsController
}
func NewController(UserLevelsService service.UserLevelsService) *Controller {
return &Controller{
UserLevels: NewUserLevelsController(UserLevelsService),
}
}