From 9aef79f87dd85fdab796dbae966fa47a0e4e2bb3 Mon Sep 17 00:00:00 2001 From: Nulo Date: Wed, 12 Oct 2022 12:53:29 -0300 Subject: [PATCH] Infobae closes #4 --- fetcher.go | 5 +++++ 1 file changed, 5 insertions(+) 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()