mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-28 03:39:34 +02:00
10 lines
337 B
Python
10 lines
337 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
from media_manager.torrent.download_clients.qbittorrent import QbittorrentConfig
|
|
from media_manager.torrent.download_clients.sabnzbd import SabnzbdConfig
|
|
|
|
|
|
class TorrentConfig(BaseSettings):
|
|
qbittorrent: QbittorrentConfig = QbittorrentConfig()
|
|
sabnzbd: SabnzbdConfig = SabnzbdConfig()
|