diff --git a/fetcher.go b/fetcher.go index 74f04ab..74b8329 100644 --- a/fetcher.go +++ b/fetcher.go @@ -81,6 +81,11 @@ func cronologicalFetcher(db *sql.DB) { FeedURL: "https://www.lanacion.com.ar/arcio/rss/", DB: db, }.Fetch() + GenericRSSFetcher{ + MedioName: "infobae", + FeedURL: "https://www.infobae.com/feeds/rss/", + DB: db, + }.Fetch() Pagina12(db, "portada", "https://www.pagina12.com.ar/rss/portada").Fetch() Pagina12(db, "edicion-impresa", "https://www.pagina12.com.ar/rss/edicion-impresa").Fetch() Pagina12(db, "secciones/el-pais", "https://www.pagina12.com.ar/rss/secciones/el-pais/notas").Fetch()