Spaces:
Running
Running
Commit
·
b98f016
1
Parent(s):
3b36921
Update main.py
Browse files
main.py
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
from typing import Union
|
2 |
|
3 |
from fastapi import FastAPI
|
|
|
4 |
|
5 |
app = FastAPI()
|
6 |
|
7 |
|
8 |
@app.get("/")
|
9 |
def read_root():
|
10 |
-
return {"Hello": "
|
|
|
1 |
from typing import Union
|
2 |
|
3 |
from fastapi import FastAPI
|
4 |
+
import os
|
5 |
|
6 |
app = FastAPI()
|
7 |
|
8 |
|
9 |
@app.get("/")
|
10 |
def read_root():
|
11 |
+
return {"Hello": os.environ.get("EXAMPLE")}
|