This commit is contained in:
makeyangcom
2024-03-06 10:47:22 +08:00
parent c7da010f01
commit 02dd25ec67
23 changed files with 252 additions and 238 deletions

View File

@@ -0,0 +1,21 @@
/**
#*****************************************************************************
# @file ping.go
# @author MakerYang(https://www.makeryang.com)
# @statement 免费课程配套开源项目,任何形式收费均为盗版
#*****************************************************************************
*/
package PingInterface
import (
"Game/framework/utils"
"github.com/gin-gonic/gin"
)
// Ping 健康检查接口
func Ping(c *gin.Context) {
Utils.Success(c, Utils.Empty{})
return
}