Files
juniteevee-cogs/reactquote/reactquote.py
2022-04-10 14:59:07 -04:00

17 lines
402 B
Python

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
def _wrapQuote(self, msg):
return msg
@commands.command()
async def reactquote(self, ctx):
"""TestCommand"""
# Your code will go here
await ctx.send("I can do stuff, really!")