13 lines
224 B
Go
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"}))
|
|
}
|