Create structure

This commit creates the first, inital structure for the project.
This commit is contained in:
CramMK
2020-01-17 15:09:53 +00:00
parent 13bcf884d9
commit 7e805ff13a
11 changed files with 277 additions and 12 deletions

31
cogs/help.py Normal file
View File

@@ -0,0 +1,31 @@
#
# Cog for a custom Help Command
#
# https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
#
# IMPORTS
import discord
from discord.ext import commands
# COG INIT
class HelpCog(commands.Cog):
def __init__(self, bot):
self.bot = bot
# COG BODY
@commands.command(
name="aquabot"
description="Prints a short help for new users"
)
async def aquabot(self, ctx):
await ctx.send("""
I'm the usele... divine AquaBot!\n
If you need help, try using the `help` command!\n
""")
# COG ENDING
def setup(bot):
bot.add_cog(HelpCog(bot))