trying to handle music
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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!')
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user