erp_server/app/admin/middleware/handler/ping.go

12 lines
130 B
Go
Raw Permalink Normal View History

2023-09-16 03:11:36 +00:00
package handler
import (
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(200, gin.H{
"message": "ok",
})
}