Есть код:
import discord
from discord.ext import commands
from discord_components import DiscordComponents, Button, ButtonStyle
bot = commands.Bot(command_prefix='!', intents=discord.Intents.all())
@bot.event
async def on_ready():
DiscordComponents(bot)
@bot.command()
async def verify(ctx):
await ctx.send(
embed=discord.Embed(title="Верификация|Verification"),
components=[
Button(style=ButtonStyle.green, label="Русский", emoji="✅"),
Button(style=ButtonStyle.green, label="English", emoji="✅")
]
)
bot.run("")
И мне нужно, чтобы при нажатие этих кнопок выдавались роли. Но только не знаю как продолжить код и т.д.