init project

This commit is contained in:
m
2026-07-11 20:12:00 +02:00
commit b1f7fe6959
42 changed files with 7930 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Health(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"data": gin.H{
"status": "healthy",
},
})
}