qq_bot/handler/wordle/wordle.go
2024-10-20 15:47:00 +08:00

29 lines
608 B
Go

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
}