Spaces:
Sleeping
Sleeping
from typing import Union | |
from fastapi import FastAPI | |
import os | |
app = FastAPI() | |
def read_root(): | |
return {"Hello": os.environ.get("EXAMPLE")} |