Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigBalthazar committed Jan 14, 2025
1 parent b327be9 commit 743bbe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
4 changes: 2 additions & 2 deletions deliveries/http/handlers/user/user_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ type User struct {
service service.User
}

func NewUserService(UserSvc service.User) User {
func NewUserService(userSvc service.User) User {
return User{
service: UserSvc,
service: userSvc,
}
}
13 changes: 0 additions & 13 deletions deliveries/http/handlers/user/user_routes.go

This file was deleted.

0 comments on commit 743bbe4

Please sign in to comment.