File size: 161 Bytes
71445f1
 
 
b98f016
71445f1
 
 
 
 
 
b98f016
1
2
3
4
5
6
7
8
9
10
11
from typing import Union

from fastapi import FastAPI
import os

app = FastAPI()


@app.get("/")
def read_root():
    return {"Hello": os.environ.get("EXAMPLE")}