Vulkan/cogs/talk.py
2021-12-22 20:52:26 -04:00

21 lines
330 B
Python

from discord.ext import commands
class Talks(commands.Cog):
"""Deal with talks to users"""
def __init__(self, bot):
self.__bot = bot
@property
def bot(self):
return self.__bot
@bot.setter
def bot(self, newBot):
self.__bot = newBot
def setup(bot):
bot.add_cog(Talks(bot))