Documentation ¶ Index ¶ type Entry func Fetch(url string, lastFetch *time.Time) ([]Entry, error) func ParseAtomFeed(data []byte) ([]Entry, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Entry ¶ type Entry struct { Id string Url *url.URL Links []*url.URL Published time.Time } func Fetch ¶ func Fetch(url string, lastFetch *time.Time) ([]Entry, error) Retrieve and parse an Atom feed from url and return all entries added after lastFetch. It makes a conditional request and returns nil if the feed has not been updated since lastFetch func ParseAtomFeed ¶ func ParseAtomFeed(data []byte) ([]Entry, error) Source Files ¶ View all Source files feed.go Click to show internal directories. Click to hide internal directories.