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,12 +11,12 @@ import (
)
type RoleService struct {
dao dao.RoleDao
dao *dao.RoleDao
uuid *uuid.Generator
}
func NewRoleService(
dao dao.RoleDao,
dao *dao.RoleDao,
uuid *uuid.Generator,
) *RoleService {
return &RoleService{