wechat-bot/news.go

18 lines
319 B
Go
Raw Permalink Normal View History

2022-07-21 23:10:41 +08:00
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"`
}