File size: 106 Bytes
20f2960
 
 
 
d892ab2
1
2
3
4
5
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
    return {"Hello": "World!"}