Add svenska yle feed
All checks were successful
Build & Release / build-docker-image (push) Successful in 1m45s
Build & Release / deploy-to-production (push) Successful in 26s

This commit is contained in:
2026-05-24 18:36:05 +02:00
parent 574fe88e37
commit 1382c0748d
5 changed files with 149 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
from fastapi import Depends, FastAPI
from routers import embed, yle_rss_fi, yle_rss_en, the_local, taloustaito,sur,hackernews,fuengirola
from routers import embed, yle_rss_fi, yle_rss_en, yle_rss_sv, the_local, taloustaito,sur,hackernews,fuengirola
from settings.defaults import get_settings
@@ -9,6 +9,7 @@ app.include_router(embed.router, prefix="/embed", tags=["embed"])
app.include_router(yle_rss_fi.router, prefix="/rss", tags=["rss"])
app.include_router(yle_rss_en.router, prefix="/rss", tags=["rss"])
app.include_router(yle_rss_sv.router, prefix="/rss", tags=["rss"])
app.include_router(the_local.router, prefix="/rss", tags=["rss"])
app.include_router(taloustaito.router, prefix="/rss", tags=["rss"])
app.include_router(sur.router, prefix="/rss", tags=["rss"])