Utkarsh736's picture
Add application file
9f1f325
raw
history blame contribute delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}