From e3a761d3a9339b34a6c674c737bf9863dcf364fd Mon Sep 17 00:00:00 2001 From: muhamad fais aizat Date: Thu, 15 May 2025 21:51:24 +0700 Subject: [PATCH] fix: test vercel --- backend/api/index.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 backend/api/index.py diff --git a/backend/api/index.py b/backend/api/index.py new file mode 100644 index 00000000..03b87797 --- /dev/null +++ b/backend/api/index.py @@ -0,0 +1,7 @@ +from fastapi import FastAPI + +app = FastAPI() + +@app.get("/") +async def health_check(): + return "berhasil" \ No newline at end of file