Module project, commit, submission
All checks were successful
Build and Release / release (push) Successful in 1m15s

This commit is contained in:
2026-04-26 16:31:03 +07:00
parent ac90236022
commit 6918a100fc
60 changed files with 5957 additions and 1020 deletions

View File

@@ -19,7 +19,6 @@ type roleService struct {
roleRepo repositories.RoleRepository
}
func NewRoleService(
roleRepo repositories.RoleRepository,
) RoleService {
@@ -48,4 +47,4 @@ func (r *roleService) GetRoleByID(ctx context.Context, id string) (*response.Rol
}
return role.ToResponse(), nil
}
}