1.0.0
This commit is contained in:
21
server/framework/interface/ping/ping.go
Normal file
21
server/framework/interface/ping/ping.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user