mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
10 lines
169 B
Python
10 lines
169 B
Python
from enum import Enum
|
|
|
|
|
|
class Provider(str, Enum):
|
|
Spotify = 'Spotify'
|
|
Deezer = 'Deezer'
|
|
YouTube = 'YouTube'
|
|
Name = 'Track Name'
|
|
Unknown = 'Unknown'
|