ferry/handler/ping.go
YuleiLan cca0845f24 new
2020-07-13 20:33:20 +08:00

11 lines
129 B
Go

package handler
import (
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(200, gin.H{
"message": "ok",
})
}