Lynxie/lynxie/commands/hello.py
2023-09-07 15:02:11 +01:00

10 lines
226 B
Python

from discord.ext import commands
class Hello(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
async def hello(self, ctx):
await ctx.send(f"Hello {ctx.author.mention}!")