ping.go 496 B

123456789101112131415161718192021
  1. /**
  2. #*****************************************************************************
  3. # @file ping.go
  4. # @author MakerYang(https://www.makeryang.com)
  5. # @statement 免费课程配套开源项目,任何形式收费均为盗版
  6. #*****************************************************************************
  7. */
  8. package PingInterface
  9. import (
  10. "Game/framework/utils"
  11. "github.com/gin-gonic/gin"
  12. )
  13. // Ping 健康检查接口
  14. func Ping(c *gin.Context) {
  15. Utils.Success(c, Utils.Empty{})
  16. return
  17. }