| 18 | } |
| 19 | |
| 20 | type userController struct { |
| 21 | userService service.UserService |
| 22 | } |
| 23 | |
| 24 | func NewUserController(userService service.UserService) UserController { |
| 25 | return &userController{userService: userService} |
nothing calls this directly
no outgoing calls
no test coverage detected