This commit is contained in:
mario
2025-04-07 11:14:18 +07:00
commit f340bc5916
17 changed files with 1424 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// HealthCheck is a simple health check handler
func HealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}