remove feedurls variable

master
magical 2021-12-31 06:20:09 +00:00
parent ce9960c06a
commit d260db550d
1 changed files with 3 additions and 14 deletions

17
main.go
View File

@ -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 {