mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
10 lines
240 B
Python
10 lines
240 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 from England, {ctx.author.mention}!")
|