Feed contains information we need to process a feed.
| 9 | |
| 10 | // Feed contains information we need to process a feed. |
| 11 | type Feed struct { |
| 12 | Name string `json:"site"` |
| 13 | URI string `json:"link"` |
| 14 | Type string `json:"type"` |
| 15 | } |
| 16 | |
| 17 | // RetrieveFeeds reads and unmarshals the feed data file. |
| 18 | func RetrieveFeeds() ([]*Feed, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected