chore: remove unnecessary prints
Browse files
app.py
CHANGED
@@ -301,9 +301,6 @@ import os
|
|
301 |
app = FastAPI()
|
302 |
|
303 |
def verify_token(authorization: str = Header(...)):
|
304 |
-
print("AUTH TOKEN : " , os.getenv("AUTH_TOKEN"))
|
305 |
-
print("authorization : " , authorization)
|
306 |
-
# Extract the token from the Authorization header
|
307 |
if not authorization.startswith("Bearer "):
|
308 |
raise HTTPException(status_code=403, detail="Invalid or missing token")
|
309 |
|
|
|
301 |
app = FastAPI()
|
302 |
|
303 |
def verify_token(authorization: str = Header(...)):
|
|
|
|
|
|
|
304 |
if not authorization.startswith("Bearer "):
|
305 |
raise HTTPException(status_code=403, detail="Invalid or missing token")
|
306 |
|