turdbot/bot/cogs/reply.py
2024-03-13 13:02:15 -06:00

12 lines
265 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.respond(args)
def setup(bot):
bot.add_cog(Reply(bot))