Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
feijooso committed Feb 20, 2024
1 parent 5cbf59e commit 6be7458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ async def create_user(user_data: CreateUserSchema):


@app.post("/login")
def login_with_google(req: LoginRequest = Body(...)):
return users_controller.handle_login(req.auth_code)
def login_with_google(request: LoginRequest):
return users_controller.handle_login(request.auth_code)

0 comments on commit 6be7458

Please sign in to comment.