File size: 106 Bytes
d0997cf
9ac153d
 
8e70769
 
1
2
3
4
5
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
    return {"Hello": "World!"}