File size: 113 Bytes
05b088f
 
 
 
b153e95
05b088f
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI

app = FastAPI()

@app.get("/home")
def greet_json():
    return {"Hello": "World!"}