Adding Deezer Module and Deezer Tests

This commit is contained in:
Rafael Vargas
2022-07-10 16:08:22 -03:00
parent c826af229c
commit 863b079a01
11 changed files with 232 additions and 21 deletions

View File

@@ -1,8 +1,9 @@
from enum import Enum
class Provider(Enum):
class Provider(str, Enum):
Spotify = 'Spotify'
Deezer = 'Deezer'
YouTube = 'YouTube'
Name = 'Track Name'
Unknown = 'Unknown'