Answers for "discord py cog setup function"

2

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())
Posted by: Guest on June-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language