Remove items

This commit is contained in:
2022-01-13 03:12:19 +00:00
parent 7307abf7d8
commit fd5fc0a85d

View File

@@ -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}]