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 MyView(View): @discord.ui.button(label= "애국가 1절", style= discord.ButtonStyle.primary, emoji="✌") async def button_1_callback(self, but..