Basic files

This commit is contained in:
Juni
2022-04-09 13:32:53 -04:00
parent 50adcfe6b3
commit f060896333
4 changed files with 32 additions and 0 deletions

13
reactquote/reactquote.py Normal file
View File

@@ -0,0 +1,13 @@
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):
"""This does stuff!"""
# Your code will go here
await ctx.send("I can do stuff!")