bt / app.py
GAS17's picture
Update app.py
32278b0 verified
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}