mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
21 lines
330 B
Python
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))
|