feat: 添加关键词回复
This commit is contained in:
28
handler/wordle/wordle.go
Normal file
28
handler/wordle/wordle.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package wordle
|
||||
|
||||
import (
|
||||
"git.lxtend.com/qqbot/constants"
|
||||
"git.lxtend.com/qqbot/handler"
|
||||
"git.lxtend.com/qqbot/model"
|
||||
)
|
||||
|
||||
func init() {
|
||||
handler.RegisterHandler("wordle", wordle, constants.LEVEL_USER)
|
||||
}
|
||||
|
||||
func wordle(msg model.Message) (reply model.Reply) {
|
||||
handler.RegisterLiveHandler(msg.GroupInfo.GroupId, msg.UserId, tempTrigger)
|
||||
return model.Reply{
|
||||
ReplyMsg: "",
|
||||
ReferOriginMsg: true,
|
||||
FromMsg: msg,
|
||||
}
|
||||
}
|
||||
|
||||
func tempTrigger(msg model.Message) (reply model.Reply, isTrigger bool) {
|
||||
return model.Reply{
|
||||
ReplyMsg: " ",
|
||||
ReferOriginMsg: true,
|
||||
FromMsg: msg,
|
||||
}, true
|
||||
}
|
||||
Reference in New Issue
Block a user