diff --git a/app/user.py b/app/user.py index 99d8461..1c322b4 100644 --- a/app/user.py +++ b/app/user.py @@ -9,6 +9,3 @@ async def read_users_me(current_user: User = Depends(get_current_active_user)): return current_user -@router.get("/users/me/items/") -async def read_own_items(current_user: User = Depends(get_current_active_user)): - return [{"item_id": "Foo", "owner": current_user.username}]