diff --git a/backend/linkpulse/main.py b/backend/linkpulse/main.py index 827cfab..5a525c4 100644 --- a/backend/linkpulse/main.py +++ b/backend/linkpulse/main.py @@ -23,6 +23,10 @@ app.add_middleware( allow_headers=["*"], ) +@app.get("/health") +async def health(): + return "OK" + @app.get("/api/test") async def get_current_time(request: Request):