fix: building issue

This commit is contained in:
yanghao05
2023-03-20 16:53:34 +08:00
parent bde38e7a0c
commit 6757e00d73
6 changed files with 18 additions and 18 deletions

View File

@@ -11,13 +11,13 @@ import (
type UserController struct {
conf *config.Config
user service.UserService
user *service.UserService
jwt *jwt.JWT
}
func NewUserController(
conf *config.Config,
user service.UserService,
user *service.UserService,
jwt *jwt.JWT,
) *UserController {
return &UserController{