mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2025-03-03 18:23:34 +08:00
11 lines
212 B
Python
11 lines
212 B
Python
from yt_shared.config import Settings
|
|
|
|
|
|
class WorkerSettings(Settings):
|
|
APPLICATION_NAME: str
|
|
MAX_SIMULTANEOUS_DOWNLOADS: int
|
|
SAVE_VIDEO_FILE: bool
|
|
STORAGE_PATH: str
|
|
|
|
|
|
settings = WorkerSettings()
|