IfNeedUpdate ...
(cmp *RssSource)
| 64 | |
| 65 | // IfNeedUpdate ... |
| 66 | func (r RssSource) IfNeedUpdate(cmp *RssSource) bool { |
| 67 | if r.Link != cmp.Link { |
| 68 | return false |
| 69 | } |
| 70 | return r.UpdatedParsed.Unix() < cmp.UpdatedParsed.Unix() |
| 71 | } |
| 72 | |
| 73 | // RssContent 订阅的RSS频道的推送信息 |
| 74 | type RssContent struct { |
no outgoing calls
no test coverage detected