package handler
import (
"github.com/gin-gonic/gin"
)
func TestPage(c *gin.Context) {
c.JSON(200, gin.H{
"code": 200,
"msg": "test",
"data": map[string]string{"test": "test"},
})
}