添加消息处理

This commit is contained in:
Noth Amor
2022-07-18 20:10:54 +08:00
parent 974ceb5b3d
commit fcc221ff42
3 changed files with 15 additions and 4 deletions

9
controller/msg.go Normal file
View File

@@ -0,0 +1,9 @@
package controller
import (
"github.com/eatmoreapple/openwechat"
)
func SingleChoice(msg *openwechat.Message) {
msg.ReplyText("我执行成功了")
}