qq_bot/health/health.go

15 lines
241 B
Go

package health
import (
"context"
"github.com/cloudwego/hertz/pkg/app"
"github.com/cloudwego/hertz/pkg/common/utils"
)
func HealthHandler(c context.Context, ctx *app.RequestContext) {
ctx.JSON(200, utils.H{
"message": "pong",
})
}