wechat-bot/news.go
2022-07-21 23:10:41 +08:00

18 lines
319 B
Go

package wxworkbot
type newsMessage struct {
message
News News `json:"news"`
}
type News struct {
Articles []NewsArticle `json:"articles"`
}
type NewsArticle struct {
Title string `json:"title"`
Description string `json:"description"`
URL string `json:"url"`
PicURL string `json:"picurl"`
}