mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-24 23:05:17 +02:00
renaming directory
This commit is contained in:
10
backend/src/dowloadClients/__init__.py
Normal file
10
backend/src/dowloadClients/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from config import DownloadClientConfig
|
||||
from dowloadClients.qbittorrent import QbittorrentClient
|
||||
|
||||
config = DownloadClientConfig()
|
||||
|
||||
# TODO: add more elif when implementing more download clients
|
||||
if config.client == "qbit":
|
||||
client = QbittorrentClient()
|
||||
else:
|
||||
client = QbittorrentClient()
|
||||
Reference in New Issue
Block a user