staticky-bot/cogs/cog_edt.py

12 lines
170 B
Python

from discord.ext import commands
class EDT:
def __init__(self, bot):
self.bot = bot
print("EDT loaded")
def setup(bot):
bot.add_cog(EDT(bot))