api-mapper / app.py
tanbushi's picture
Add application file
6d1fe81
raw
history blame
163 Bytes
# uvicorn app:app --host 0.0.0.0 --port 7860 --reload
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}