Files
exchange_go/common/middleware/handler/ping.go

12 lines
130 B
Go
Raw Normal View History

2025-02-06 11:14:33 +08:00
package handler
import (
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(200, gin.H{
"message": "ok",
})
}