Files

12 lines
130 B
Go
Raw Permalink Normal View History

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