You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wechat-bot/text.go

13 lines
265 B
Go

package wxworkbot
type textMessage struct {
message
Text Text `json:"text"`
}
type Text struct {
Content string `json:"content"`
MentionedList []string `json:"mentioned_list"`
MentionedMobileList []string `json:"mentioned_mobile_list"`
}