2025-05-07 10:21:52 +08:00

12 lines
206 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// HealthCheck responds with a simple health status
func HealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}