Update cognee/api/client.py

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Vasilije 2024-07-24 16:45:36 +02:00 committed by GitHub
parent 36e156e80a
commit 3f5e665c45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,9 +117,6 @@ app.include_router(
)
@app.get("/authenticated-route")
async def authenticated_route(user: User = Depends(current_active_user)):
return {"message": f"Hello {user.email}!"}
@app.get("/")
async def root():