Basic files
This commit is contained in:
5
reactquote/__init__.py
Normal file
5
reactquote/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from .reactquote import ReactQuote
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(ReactQuote(bot))
|
||||
8
reactquote/info.json
Normal file
8
reactquote/info.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"AUTHOR" : "Juni (juniteevee)",
|
||||
"DESCRIPTION" : "Save quotes by reacting to them and bring them up later",
|
||||
"DISABLED" : false,
|
||||
"SHORT" : "Save quotes by reacting to them and bring them up later",
|
||||
"NAME" : "React Quotes",
|
||||
"INSTALL_CMD" : "React Quotes. Install at own risk"
|
||||
}
|
||||
13
reactquote/reactquote.py
Normal file
13
reactquote/reactquote.py
Normal 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!")
|
||||
Reference in New Issue
Block a user