migu_server/common/middleware/handler/ping.go

12 lines
130 B
Go
Raw Normal View History

2024-10-18 15:46:54 +00:00
package handler
import (
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(200, gin.H{
"message": "ok",
})
}