qq_bot/health/health.go
2024-10-15 23:06:27 +08:00

10 lines
135 B
Go

package health
import "github.com/gin-gonic/gin"
func HealthHandler(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
}