mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-24 14:55:16 +02:00
10 lines
270 B
Python
10 lines
270 B
Python
from dowloadClients.config import DownloadClientConfig
|
|
from dowloadClients.qbittorrent import QbittorrentClient
|
|
|
|
config = DownloadClientConfig()
|
|
|
|
if config.download_client == "qbit":
|
|
client = QbittorrentClient()
|
|
else:
|
|
raise ValueError("Unknown download client")
|