19 lines
374 B
Go
19 lines
374 B
Go
/**
|
|
******************************************************************************
|
|
* @file ping.go
|
|
* @author MakerYang
|
|
******************************************************************************
|
|
*/
|
|
|
|
package PingController
|
|
|
|
import (
|
|
"Game/framework/utils"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Ping(c *gin.Context) {
|
|
Utils.Success(c, Utils.EmptyData{})
|
|
return
|
|
}
|