test / app.py
vickyvigneshmass's picture
Update app.py
a5faf3c verified
raw
history blame
112 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"welcome": "Created!"}