prepare the help module and general cleanup of files

This commit is contained in:
2023-03-19 21:01:53 +01:00
parent ac39805494
commit 6f43259cad
16 changed files with 280 additions and 64 deletions

26
cogs/mods.py Normal file
View File

@@ -0,0 +1,26 @@
import discord
from discord.ext import commands
from logging import getLogger
# setup logging
log = getLogger(__name__)
e = discord.Embed()
class Moderator(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_ready(self):
log.info(f'module active')
async def setup(bot):
await bot.add_cog(Moderator(bot))