mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-05 02:09:28 +00:00
11 lines
159 B
Python
11 lines
159 B
Python
"""playlist constants"""
|
|
|
|
import enum
|
|
|
|
|
|
class PlaylistTypesEnum(enum.Enum):
|
|
"""all playlist_type options"""
|
|
|
|
REGULAR = "regular"
|
|
CUSTOM = "custom"
|