You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
162 B

2 months ago
package system
2 months ago
import (
"github.com/gin-gonic/gin"
)
2 months ago
func Ping(ctx *gin.Context) {
2 months ago
//fmt.Println(utils.DB())
2 months ago
ctx.JSON(200, gin.H{
"message": "pong",
})
}