package router import ( "91porn-server/app/api/health_check_ctrl" "github.com/gin-gonic/gin" ) func healthCheckRouter(router *gin.RouterGroup) { group := router.Group("/health") { group.POST("/ping", health_check_ctrl.Ping) } }