mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
12 lines
327 B
Python
12 lines
327 B
Python
import discord
|
|
from discord.ext import commands
|
|
|
|
|
|
class Hello(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.command()
|
|
async def hello(self, interaction: discord.Interaction):
|
|
"""Says hello!"""
|
|
await interaction.response.send_message(f"Balls, {interaction.user.mention}")
|