HidekoBot/src/main/java/wtf/beatrice/hidekobot/slashcommands/PingCommand.java

13 lines
321 B
Java
Raw Normal View History

package wtf.beatrice.hidekobot.slashcommands;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import org.jetbrains.annotations.NotNull;
public class PingCommand
{
public PingCommand(@NotNull SlashCommandInteractionEvent event)
{
event.reply("Pong!").queue();
}
}