2023-12-04 13:51:43 -07:00
|
|
|
from discord.ext import bridge, commands
|
|
|
|
|
|
|
|
|
|
class Reply(commands.Cog):
|
|
|
|
|
def __init__(self, bot):
|
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
|
|
@bridge.bridge_command()
|
2024-03-13 12:56:53 -06:00
|
|
|
async def reply(self, ctx, args):
|
|
|
|
|
await ctx.respond(args)
|
2023-12-04 13:51:43 -07:00
|
|
|
|
|
|
|
|
def setup(bot):
|
|
|
|
|
bot.add_cog(Reply(bot))
|