From 7ae4a5597e90af179d4cc9d042229152e6c27938 Mon Sep 17 00:00:00 2001 From: fish Date: Mon, 6 May 2019 15:41:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- router.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/router.go b/router.go index 9517362..7b7a111 100644 --- a/router.go +++ b/router.go @@ -35,7 +35,6 @@ func gw_router() { v1.GET("/satisfaction", pj_api) v1.GET("/seat/:id", seat_api) v1.POST("/push", push) - v1.POST("/pushv2", pushv2) v1.GET("/pushtest",pushTest) v1.GET("/pushtest2",pushTest2) v1.GET("/pushtest3",pushTest3) @@ -167,7 +166,7 @@ func push(c *gin.Context) { data := c.PostForm("d") - go dealData(data) + // go dealData(data) log.Println("data:", data) c.JSON(http.StatusOK, gin.H{"status": http.StatusOK, "data": data})