This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord import app_commands | |
from discord.ext import commands | |
# all cogs inherit from this base class | |
class ExampleCog(commands.Cog): | |
def __init__(self, bot): | |
self.bot = bot # adding a bot attribute for easier access | |
# adding a command to the cog | |
@commands.command(name="ping") |