dummyapi / app.py
vimal-yuvabe's picture
int commit
f548fce
raw
history blame contribute delete
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}