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