This commit is contained in:
2024-07-05 10:40:52 +03:00
parent f36e82c5c0
commit 4d54b91727

View File

@@ -20,7 +20,9 @@ async def check_auth(token: Annotated[HTTPAuthorizationCredentials, Depends(auth
app = FastAPI(
dependencies=[Depends(check_auth)]
dependencies=[
# Depends(check_auth)
]
)