mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-07-05 15:56:20 +00:00
10 lines
200 B
Python
10 lines
200 B
Python
from discord.ext import commands
|
|
|
|
|
|
class E621(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.command()
|
|
async def e621(self, ctx):
|
|
await ctx.reply(f":3")
|