hello / app.py
Kiran5's picture
Add application file
98fd158
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}