deploy-fastapi / app.py
LOUIS SANNA
Add application file
90c89dd
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}