2022-04-09 13:32:53 -04:00
|
|
|
from redbot.core import commands
|
|
|
|
|
|
|
|
|
|
class ReactQuote(commands.Cog):
|
|
|
|
|
"""Cog to store quotes by reacting with speech bubble"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, bot):
|
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
|
|
@commands.command()
|
|
|
|
|
async def reactquote(self, ctx):
|
2022-04-09 13:41:50 -04:00
|
|
|
"""TestCommand"""
|
2022-04-09 13:32:53 -04:00
|
|
|
# Your code will go here
|
2022-04-09 13:41:50 -04:00
|
|
|
await ctx.send("I can do stuff, really!")
|