func Router() *gin.Engine {
router := gin.Default()
router.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
return router
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)