Files
old-backend/controllers/health_controller.go

12 lines
160 B
Go
Raw Permalink Normal View History

2023-10-13 11:48:14 +02:00
package controllers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func HealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"health": "ready"})
}