Files
gen2d/backend/internal/handler/health.go
T

12 lines
165 B
Go
Raw Normal View History

package handler
import (
"gen2d/internal/model"
"github.com/gin-gonic/gin"
)
func Health(c *gin.Context) {
c.JSON(200, model.OK(gin.H{"status": "healthy"}))
}