From 616507bfcccdec943849fbb4374e9d0dd4425d76 Mon Sep 17 00:00:00 2001 From: dustoair <107600816+dustoair@users.noreply.github.com> Date: Sun, 24 Jul 2022 15:42:38 +0800 Subject: [PATCH] mid --- handle/replyImage.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/handle/replyImage.go b/handle/replyImage.go index ad3a315..f3ba913 100644 --- a/handle/replyImage.go +++ b/handle/replyImage.go @@ -1,14 +1,10 @@ package handle import ( - "WechatGateWay/global" "WechatGateWay/third_part" - "fmt" "net/http" ) func replyImage(msgContent MsgContent, timestamp, nonce string, w http.ResponseWriter) { - fmt.Println(global.WechatAccessToken) - third_part.SendTextPost(msgContent.ToUsername, "你好") third_part.SendPicFile(msgContent.FromUsername, "/app/data/ygg.jpg") }