diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..b9af97c --- /dev/null +++ b/app/main.py @@ -0,0 +1,7 @@ +from fastapi import FastAPI + +app = FastAPI() + +@app.get("/health") +def health_check(): + return {"status": "ok"}