Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,10 @@
|
|
|
|
1 |
from fastapi import FastAPI
|
2 |
from fastapi.responses import JSONResponse
|
3 |
|
|
|
|
|
|
|
4 |
app = FastAPI()
|
5 |
|
6 |
@app.get("/")
|
|
|
1 |
+
import os
|
2 |
from fastapi import FastAPI
|
3 |
from fastapi.responses import JSONResponse
|
4 |
|
5 |
+
o = os.getenv("OS_QL")
|
6 |
+
print(f"Secret here: {o}")
|
7 |
+
|
8 |
app = FastAPI()
|
9 |
|
10 |
@app.get("/")
|