We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04ec5bf + c9fc04c commit cc6d435Copy full SHA for cc6d435
examples/app_commands/slash_basic.py
@@ -14,6 +14,9 @@
14
async def hello(ctx):
15
"""Say hello to the bot""" # the command description can be supplied as the docstring
16
await ctx.respond(f"Hello {ctx.author}!")
17
+ # Please note that you MUST respond with ctx.respond(), ctx.defer(), or any other
18
+ # interaction response within 3 seconds in your slash command code, otherwise the
19
+ # interaction will fail.
20
21
22
@bot.slash_command(
0 commit comments