12 lines
265 B
Python
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)) |