yor-discord-bot / cogs / help.py
help.py
Raw
"""This file contains the Help Discord Cog extension.
"""
import discord
from discord.ext import commands


class Help(commands.Cog):
    """
    Sends this help message
    """
    def __init__(self, bot):
        self.bot = bot


async def setup(bot):
    await bot.add_cog(Help(bot))