mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
12 lines
332 B
Python
12 lines
332 B
Python
from discord import ButtonStyle, Interaction
|
|
from discord.ui import Button
|
|
from Config.Emojis import VEmojis
|
|
|
|
|
|
class SongsButton(Button):
|
|
def __init__(self):
|
|
super().__init__(label="Songs", style=ButtonStyle.secondary, emoji=VEmojis().QUEUE)
|
|
|
|
async def callback(self, interaction: Interaction) -> None:
|
|
pass
|