Files
Arthonor-Neo/commands/test/ping.js
T
2024-08-02 13:25:06 +02:00

11 lines
361 B
JavaScript

const { SlashCommandBuilder } = require('discord.js')
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('returns pong'),
async execute(interaction) {
await interaction.deferReply()
await interaction.editReply('pong!')
await interaction.followUp('another pong!')
}
}