AsadCognify commited on
Commit
fe96ff4
·
verified ·
1 Parent(s): 50f635a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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("/")