gemini-cook / app.py
harish3304's picture
Create app.py
6a13fbc verified
raw
history blame
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}