1
0
Fork 0
mirror of synced 2024-06-23 08:40:41 +12:00

Added the required setup function

This commit is contained in:
Phxntxm 2016-07-23 07:01:16 -05:00
parent dd8ecf7590
commit 831ed6125f
2 changed files with 6 additions and 0 deletions

View file

@ -84,3 +84,6 @@ class Links:
else:
rand_image = data[random.randint(0, len(data)-1)]['file_url']
await self.bot.say(rand_image)
def setup(bot):
bot.add_cog(Links(bot))

View file

@ -71,3 +71,6 @@ class Tags:
await self.bot.say('I have just removed the tag `{}`'.format(tag))
else:
await self.bot.say("I was unable to save this data")
def setup(bot):
bot.add_cog(Tags(bot))