feat: add option to disable scalar

This commit is contained in:
Stavros
2026-07-04 18:00:10 +03:00
parent c10c33c664
commit 0c449321ff
4 changed files with 19 additions and 15 deletions
+1 -1
View File
@@ -35,6 +35,6 @@ func NewHealthController(i HealthControllerInput) *HealthController {
func (controller *HealthController) healthHandler(c *gin.Context) {
c.JSON(200, SimpleResponse{
Status: 200,
Message: "OK",
Message: "Healthy",
})
}