to-where / app.py
elyor-ml's picture
Add application file
ac5a358
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}