import discord from discord.ui import Button, View from discord.ext import commands intents = discord.Intents.default() intents.message_content = True bot = commands.Bot(command_prefix=">", intents=intents) Interaction : discord.Interaction = discord.Interaction class MusicView(View): @discord.ui.button(label = "애국가", style = discord.ButtonStyle.green, emoji="✌") async def button_1_callback(self..