happychat / app.py
rapid12k4's picture
Create app.py
6b0f734 verified
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}