From c048fb4190430ca37aaea61e1fa3375b1dd373e7 Mon Sep 17 00:00:00 2001 From: Tharun Paul <55498156+paul-tharun@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:54:05 +0530 Subject: [PATCH] Add health check endpoint at api/v1 --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 335e4a5..e996cbd 100644 --- a/app/main.py +++ b/app/main.py @@ -27,8 +27,7 @@ @app.get(settings.API_V1_STR) async def home(request: Request): - return templates.TemplateResponse("base.html", {"request": request}) - # return {"message": "Server is up"} + return {"message": "Server is up"} app.include_router(dataset_router, prefix="", tags=["Compare Datasets"])