diff --git a/api/index.py b/api/index.py new file mode 100644 index 00000000000000..442939ce98a5dd --- /dev/null +++ b/api/index.py @@ -0,0 +1,13 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def root(): + return {"status": "ok"} + + +@app.get("/health") +def health(): + return {"status": "ok"}