Talking-Duck / main.py
sinatayebati's picture
#1 docker build test
bf444f4
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}