Update app.py
Browse files
app.py
CHANGED
|
@@ -6,8 +6,7 @@ import shutil
|
|
| 6 |
|
| 7 |
app = FastAPI()
|
| 8 |
print("--- NEW VERSION STARTING ---")
|
| 9 |
-
SECURITY_TOKEN = "
|
| 10 |
-
|
| 11 |
@app.get("/")
|
| 12 |
def read_root():
|
| 13 |
return {"status": "online", "message": "TermX API is running"}
|
|
|
|
| 6 |
|
| 7 |
app = FastAPI()
|
| 8 |
print("--- NEW VERSION STARTING ---")
|
| 9 |
+
SECURITY_TOKEN = os.getenv("SECURITY_TOKEN")
|
|
|
|
| 10 |
@app.get("/")
|
| 11 |
def read_root():
|
| 12 |
return {"status": "online", "message": "TermX API is running"}
|