UPDATE: Change type response
All checks were successful
Build and Release / release (push) Successful in 1m4s

This commit is contained in:
2026-04-16 12:53:12 +07:00
parent eac5cb528f
commit 42f6b3359e
4 changed files with 6 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ func (u *UserEntity) ToResponse() *response.UserResponse {
}
func UsersEntityToResponse(users []*UserEntity) []*response.UserResponse {
out := make([]*response.UserResponse, len(users))
out := make([]*response.UserResponse, 0)
for _, user := range users {
if user == nil {
continue