Spaces:
Build error
Build error
File size: 253 Bytes
bd4e422 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from typing import Union
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello EXAMPLE": os.environ.get("EXAMPLE"),
"Hello SECRET_EXAMPLE": os.environ.get("SECRET_EXAMPLE")
}
|