g2 / app.py
Yoobit's picture
t1
deeeb60
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}