Renaming modules, removing useless and changing logic of bot initialization

This commit is contained in:
Rafael Vargas
2022-01-06 18:25:17 -04:00
parent 9c327b8dbf
commit 74d91c15f8
22 changed files with 33 additions and 209 deletions

9
vulkan/music/Types.py Normal file
View File

@@ -0,0 +1,9 @@
from enum import Enum
class Provider(Enum):
"""Store Enum Types of the Providers"""
Spotify = "Spotify"
YouTube = "YouTube"
Name = 'Track Name'
Unknown = "Unknown"