package
Version:
v1.0.4
Opens a new window with list of versions in this module.
Published: Oct 13, 2024
License: MIT
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Пакет для работы с RSS-потоками.
аккуратно украдено из примера реализации
Parse читает rss-поток и возвращет
массив раскодированных новостей.
type FeedInfo struct {
XMLName xml.Name `xml:"rss"`
Channel RSSChannel `xml:"channel"`
}
type Item struct {
Title string `xml:"title"`
Description string `xml:"description"`
PubDate string `xml:"pubDate"`
Link string `xml:"link"`
}
type RSSChannel struct {
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.