Files
HidekoBot/src/main/java/wtf/beatrice/hidekobot/commands/slash/PingCommand.java
Beatrice Dellacà 11e4a07698
All checks were successful
continuous-integration/drone/push Build is passing
Refactor objects package
2022-11-22 16:41:08 +01:00

25 lines
730 B
Java

package wtf.beatrice.hidekobot.commands.slash;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import net.dv8tion.jda.api.interactions.commands.build.CommandData;
import net.dv8tion.jda.api.interactions.commands.build.Commands;
import org.jetbrains.annotations.NotNull;
import wtf.beatrice.hidekobot.objects.commands.SlashCommandImpl;
public class PingCommand extends SlashCommandImpl
{
@Override
public CommandData getSlashCommandData()
{
return Commands.slash("ping",
"Test if the bot is responsive.");
}
@Override
public void runSlashCommand(@NotNull SlashCommandInteractionEvent event)
{
event.reply("Pong!").queue();
}
}