"""Hello slash command.""" import discord from discord.app_commands import Command from discord.ext import commands async def hello(interaction: discord.Interaction, name: str = "World") -> None: """Greet a user by name.""" await interaction.response.send_message( f"Hello, {name}!", ephemeral=True, ) hello.__signature__ = None # type: ignore