Files
gen2d/backend/internal/handler/health.go
T
2026-05-23 12:19:33 +08:00

13 lines
224 B
Go

package handler
import (
"gen2d/internal/model"
"github.com/gin-gonic/gin"
)
// Health 健康检查接口,返回服务运行状态。
func Health(c *gin.Context) {
c.JSON(200, model.OK(gin.H{"status": "healthy"}))
}