test-env / main.py
kywch's picture
test docker
c5ec246
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}