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