From bb49892aa45aa411903911fefad7da216fdc8e0c Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Thu, 10 Apr 2025 00:47:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=20help=20=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E4=B8=AD=E6=B7=BB=E5=8A=A0=E6=97=A5=E5=BF=97=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E4=BB=A5=E8=BE=93=E5=87=BA=E5=8E=9F=E5=A7=8B=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/help/help.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handler/help/help.go b/handler/help/help.go index b32c69f..af6d522 100644 --- a/handler/help/help.go +++ b/handler/help/help.go @@ -1,6 +1,8 @@ package help import ( + "log" + "git.lxtend.com/qqbot/action" "git.lxtend.com/qqbot/constants" "git.lxtend.com/qqbot/handler" @@ -14,6 +16,7 @@ func init() { } func help(msg model.Message) *model.Reply { + log.Println(msg.RawMsg) var helpInfo string if len(util.SplitN(msg.RawMsg, 2)) == 1 { helpInfo = `请输入!help [分类] 查看下面的分类功能`