ryuko-ng/cogs/links.py
Ave Ozkal 52ef8cfe93
Add links and meme cogs
Now it's time to implement big stuffs :)
2018-12-23 16:48:15 +03:00

20 lines
367 B
Python

from discord.ext import commands
class Links:
"""
Commands for easily linking to projects.
"""
def __init__(self, bot):
self.bot = bot
@commands.command(hidden=True)
async def pegaswitch(self, ctx):
"""test"""
await ctx.send("https://github.com/reswitched/pegaswitch")
def setup(bot):
bot.add_cog(Links(bot))