health.go 198 B

12345678910
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "net/http"
  5. )
  6. func HealthCheck(context *gin.Context) {
  7. context.JSON(http.StatusOK, gin.H{"health_check": "successful", "message": "OK"})
  8. }