dock / app.py
franyer24's picture
Update app.py
7f06eb0 verified
Raw
History Blame Contribute Delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}