GENC3 / app.py
roll-ai's picture
performing commit through vscode
55b0f4d
raw
history blame
132 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World! Hope everything is fine"}