diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-26 06:31:52 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-26 06:31:52 +0530 |
commit | 9f6a96ae733a9bf57a20cb3004a8e8f6f5f63b9f (patch) | |
tree | c2d34d783cb6b86fa4dbd6a3c50e8ad9d0f37d9b /handlers | |
parent | 36cd2854d0cfbe0345623deadbfbde77c974d80c (diff) |
server.go & handlers: Add health check on / endpoint to show API running status
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/handlers.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/handlers/handlers.go b/handlers/handlers.go index c15da0a..b0a0c29 100644 --- a/handlers/handlers.go +++ b/handlers/handlers.go @@ -35,6 +35,10 @@ func init() { } } +func HealthCheck(c echo.Context) error { + return c.JSON(http.StatusOK, map[string]string{"message": "API is running!"}) +} + // handleError handles errors by logging and returning a JSON response func handleError(c echo.Context, errMsg string, status int) error { log.Println(errMsg) |