From 4d54b9172795ca0a7b305791979542a656f22323 Mon Sep 17 00:00:00 2001 From: fakz9 Date: Fri, 5 Jul 2024 10:40:52 +0300 Subject: [PATCH] v1.0 --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) + ] )