tests: add tests for health controller

This commit is contained in:
Stavros
2026-03-23 19:02:01 +02:00
parent a948e001cd
commit 8eeb0b9e87
2 changed files with 89 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ func (controller *HealthController) SetupRoutes() {
func (controller *HealthController) healthHandler(c *gin.Context) {
c.JSON(200, gin.H{
"status": "ok",
"status": 200,
"message": "Healthy",
})
}