4
1
Fork 1
This repository has been archived on 2024-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
qBitDownload-Bot/TYPES.py

18 lines
264 B
Python

# -*- coding: utf-8 -*-
from enum import Enum
class DirParserTypes(Enum):
Jellyfin = "Jellyfin"
class LogTypes(Enum):
LOG = "LOG"
ERROR = "ERROR"
WARN = "WARNING"
class TorrentTypes(Enum):
MAGNET = "Magnet Link"
FILE = "Torrent File"