ferry/handler/ping.go

11 lines
129 B
Go
Raw Permalink Normal View History

2020-07-13 20:33:20 +08:00
package handler
import (
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(200, gin.H{
"message": "ok",
})
}