Skip to content

Commit

Permalink
create login feature
Browse files Browse the repository at this point in the history
  • Loading branch information
AmanAgnihotri committed Apr 12, 2024
1 parent b330422 commit 5f68dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/user/login/create/infra/web/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package web

import (
"ttt/internal/base/domain/app"
"ttt/internal/user/common/api/user/guest"
"ttt/internal/user/common/api/user/login"
"ttt/internal/user/login/create/api"
"ttt/internal/user/login/create/domain"
"ttt/pkg/infra/web/http"
Expand Down Expand Up @@ -67,7 +67,7 @@ func (c *controller) newCommand(req request) (domain.Command, bool) {
return command, false
}

userID, guestToken, ok := guest.Parse(req.GuestID)
userID, guestToken, ok := login.Parse(req.GuestID)
if !ok {
return command, false
}
Expand Down

0 comments on commit 5f68dfe

Please sign in to comment.