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.
2024-04-30 23:11:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2024-05-04 01:08:21 +00:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class DirParserTypes(Enum):
|
|
|
|
Jellyfin = "Jellyfin"
|
|
|
|
|
|
|
|
|
|
|
|
class LogTypes(Enum):
|
|
|
|
LOG = "Log"
|
|
|
|
ERROR = "Error"
|
|
|
|
WARN = "Warning"
|