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,11 +11,11 @@ import (
)
type RoleController struct {
roleSvc service.RoleService
roleSvc *service.RoleService
}
func NewRoleController(
roleSvc service.RoleService,
roleSvc *service.RoleService,
) *RoleController {
return &RoleController{
roleSvc: roleSvc,