Files

12 lines
130 B
Go
Raw Permalink 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",
})
}