Как мне создать экземпляр моего класса в discord.py

#discord.py Вопрос: import discord from discord.ext import commands intents = discord.Intents(messages=True, guilds=True, reactions=True, members=True, presences=True,guild_messages = True) client = commands.Bot(command_prefix="!dc ", intents=intents) #I've created the below class so that every…

Продолжить чтениеКак мне создать экземпляр моего класса в discord.py