This commit is contained in:
Stavros
2026-03-12 16:17:16 +02:00
parent b2a1bfb1f5
commit 8c8a9e93ff
4 changed files with 201 additions and 121 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",
})
}