Files
Gwendolyn/gwendolyn/ext/misc.py
2024-10-28 13:05:06 +01:00

9 lines
303 B
Python

from interactions import Extension, slash_command, SlashContext
class MiscExtension(Extension):
"""Contains the miscellaneous commands."""
@slash_command()
async def hello(self, ctx: SlashContext):
"""Greet the bot."""
await ctx.send(f"Hello, I'm {self.bot.user.mention}!")