remove feedurls variable
parent
ce9960c06a
commit
d260db550d
17
main.go
17
main.go
|
@ -13,16 +13,10 @@ import (
|
|||
"github.com/mmcdole/gofeed"
|
||||
)
|
||||
|
||||
var feedurls = []string{
|
||||
"https://tilde.team/~dozens/dreams/rss.xml",
|
||||
//"https://xkcd.com/atom.xml",
|
||||
"https://tilde.town/~magical/xkcd.xml",
|
||||
}
|
||||
|
||||
func main() {
|
||||
var sources = make([]*FeedSource, len(feedurls)) // TODO: interface Source
|
||||
for i, u := range feedurls {
|
||||
sources[i] = NewFeed(u)
|
||||
var sources = []*FeedSource{ // TODO: interface Source
|
||||
NewFeed("https://tilde.team/~dozens/dreams/rss.xml"),
|
||||
NewFeed("https://tilde.town/~magical/xkcd.xml"), // "https://xkcd.com/atom.xml",
|
||||
}
|
||||
|
||||
var wg sync.WaitGroup
|
||||
|
@ -39,11 +33,6 @@ func main() {
|
|||
for _, src := range sources {
|
||||
fmt.Println(src.Title, src.Error)
|
||||
}
|
||||
//var feeds []*gofeed.Feed
|
||||
//var errors []error
|
||||
|
||||
//for _, url := range feedUrls {
|
||||
//}
|
||||
}
|
||||
|
||||
type Source interface {
|
||||
|
|
Loading…
Reference in New Issue