“Discord.py Cog” Ответ

Discord.py Cog

from discord.ext import commands

class Ping(commands.Cog):
    """Receives ping commands"""
    
    @commands.command()
    async def ping(self, ctx: commands.Context):
        await ctx.send("Pong")

def setup(bot: commands.Bot):
    bot.add_cog(Ping())
DenverCoder1

Discord.py Cog Classes

class Test(commands.cog):

    def __init__(self, client):
        self.client = client
        self._last_member = None
TrimB24

Ответы похожие на “Discord.py Cog”

Вопросы похожие на “Discord.py Cog”

Больше похожих ответов на “Discord.py Cog” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования