| 69 | } |
| 70 | |
| 71 | type UserRestHandlerImpl struct { |
| 72 | userService user2.UserService |
| 73 | validator *validator.Validate |
| 74 | logger *zap.SugaredLogger |
| 75 | enforcer casbin.Enforcer |
| 76 | roleGroupService user2.RoleGroupService |
| 77 | userCommonService user2.UserCommonService |
| 78 | rbacEnforcementUtil commonEnforcementFunctionsUtil.CommonEnforcementUtil |
| 79 | } |
| 80 | |
| 81 | func NewUserRestHandlerImpl(userService user2.UserService, validator *validator.Validate, |
| 82 | logger *zap.SugaredLogger, enforcer casbin.Enforcer, roleGroupService user2.RoleGroupService, |
nothing calls this directly
no outgoing calls
no test coverage detected