prepare the help module and general cleanup of files
This commit is contained in:
26
cogs/mods.py
Normal file
26
cogs/mods.py
Normal 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))
|
||||
Reference in New Issue
Block a user