Vulkan/vulkanbot/music/Playlist.py

10 lines
194 B
Python

class Playlist():
"""Class to manage and control the musics to play"""
def __init__(self) -> None:
self.queue = []
self.history = []
def next_music():
pass