This commit is contained in:
Aarthi Manivannan, Premanathan Aarthi Manivannan
2025-11-06 15:50:10 +01:00
parent a0fe1a80e3
commit 0dc2ebe99c
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/health")
def health_check():
return {"status": "ok"}