turdbot/py/cogs/reply.py
ionburger 95af75a5c2 yed
2023-12-14 18:47:29 -07:00

12 lines
267 B
Python

from discord.ext import bridge, commands
class Reply(commands.Cog):
def __init__(self, bot):
self.bot = bot
@bridge.bridge_command()
async def reply(self, ctx, *args):
await ctx.send(args[0:])
def setup(bot):
bot.add_cog(Reply(bot))