ping.go 342 B

123456789101112131415161718
  1. // Code generated by hertz generator.
  2. package handler
  3. import (
  4. "context"
  5. "github.com/cloudwego/hertz/pkg/app"
  6. "github.com/cloudwego/hertz/pkg/common/utils"
  7. "github.com/cloudwego/hertz/pkg/protocol/consts"
  8. )
  9. // Ping .
  10. func Ping(ctx context.Context, c *app.RequestContext) {
  11. c.JSON(consts.StatusOK, utils.H{
  12. "message": "pong",
  13. })
  14. }