浏览代码

handleMessage

yaotian 8 年之前
父节点
当前提交
28d445a2fa
共有 3 个文件被更改,包括 0 次插入6 次删除
  1. 0 2
      examples/beego/beego.go
  2. 0 2
      examples/gin/gin.go
  3. 0 2
      examples/http/http.go

+ 0 - 2
examples/beego/beego.go

@@ -41,8 +41,6 @@ func hello(ctx *context.Context) {
 		fmt.Println(err)
 		return
 	}
-	//发送回复的消息
-	msgHandler.Send()
 }
 
 func main() {

+ 0 - 2
examples/gin/gin.go

@@ -48,6 +48,4 @@ func hello(c *gin.Context) {
 		fmt.Println(err)
 		return
 	}
-	//发送回复的消息
-	msgHandler.Send()
 }

+ 0 - 2
examples/http/http.go

@@ -41,8 +41,6 @@ func hello(rw http.ResponseWriter, req *http.Request) {
 		fmt.Println(err)
 		return
 	}
-	//发送回复的消息
-	msgHandler.Send()
 }
 
 func main() {