14 lines
434 B
Go
14 lines
434 B
Go
package rss
|
||
|
||
func init() {
|
||
}
|
||
|
||
/*
|
||
定时检测最新的rss数据是否有更新,若有则向对应群发送消息
|
||
取出所有订阅信息,并根据订阅信息中的feed_id获取对应的rss源信息,并根据rss源信息中的url获取最新的rss数据
|
||
比较最新的rss数据与订阅信息中的last_item_hash,若有更新则向对应群发送消息,并更新订阅信息中的last_item_hash
|
||
*/
|
||
func CheckRssJob() {
|
||
|
||
}
|