fastAPI / app.py
MHULO's picture
Update app.py
b153e95 verified
raw
history blame contribute delete
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/home")
def greet_json():
return {"Hello": "World!"}