diff --git a/main.py b/main.py index 6add569..6d6ecf7 100644 --- a/main.py +++ b/main.py @@ -20,7 +20,9 @@ async def check_auth(token: Annotated[HTTPAuthorizationCredentials, Depends(auth app = FastAPI( - dependencies=[Depends(check_auth)] + dependencies=[ + # Depends(check_auth) + ] )