14 lines
237 B
Go
14 lines
237 B
Go
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)
|
|
}
|
|
}
|