24 lines
403 B
Go
Raw Normal View History

2025-07-18 20:10:29 +07:00
package handler
import (
"apskel-pos-be/internal/logger"
"net/http"
"github.com/gin-gonic/gin"
)
type HealthHandler struct {
}
func NewHealthHandler() *HealthHandler {
return &HealthHandler{}
}
func (hh *HealthHandler) HealthCheck(c *gin.Context) {
log := logger.NewContextLogger(c, "healthCheck")
log.Info("Health Check success")
c.JSON(http.StatusOK, gin.H{
"status": "Healthy!!",
})
}