Files
ohm_streaming/app/routers/__init__.py
T
root 0c03f4f4a6
CI / Test (Python 3.11) (push) Has been cancelled
CI / Test (Python 3.12) (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Type Check (push) Has been cancelled
CI / Summary (push) Has been cancelled
feat: add Settings tab with provider management and language preferences
- Implemented AppSettings model and table using SQLModel.
- Created Settings router with endpoints for preferences and provider toggling.
- Added Settings tab to the UI with real-time health status of providers.
- Integrated language and provider filtering into anime and series search logic.
- Updated templates to respect user-defined settings.
2026-03-26 16:12:29 +00:00

31 lines
997 B
Python

"""
Routers package for Ohm Stream Downloader API.
"""
from app.routers.router_auth import router as auth_router
from app.routers.router_downloads import router as downloads_router
from app.routers.router_anime import router as anime_router
from app.routers.router_favorites import router as favorites_router
from app.routers.router_recommendations import router as recommendations_router
from app.routers.router_watchlist import router as watchlist_router
from app.routers.router_sonarr import router as sonarr_router
from app.routers.router_player import router as player_router
from .router_static import router as static_router
from .router_root import router as root_router
from .router_settings import router as settings_router
__all__ = [
"auth_router",
"downloads_router",
"anime_router",
"favorites_router",
"recommendations_router",
"watchlist_router",
"sonarr_router",
"player_router",
"static_router",
"root_router",
"settings_router",
]