package handlers import ( "net/http" "github.com/gin-gonic/gin" ) // HomeHandler 首页处理器 func HomeHandler(c *gin.Context) { c.JSON(http.StatusOK, gin.H{ "message": "欢迎使用AnKao Web服务", "version": "1.0.0", }) } // HealthCheckHandler 健康检查处理器 func HealthCheckHandler(c *gin.Context) { c.JSON(http.StatusOK, gin.H{ "status": "healthy", }) }