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