18 lines
450 B
JavaScript
18 lines
450 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
// TODO - Add insults as the response to this command
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Replies with your input!'),
|
|
/*
|
|
.addStringOption(option =>
|
|
option.setName('input')
|
|
.setDescription('The input to echo back')),
|
|
*/
|
|
example: "ping",
|
|
isPrivileged: false,
|
|
async execute(message) {
|
|
await message.channel.send('**Pong.**');
|
|
}
|
|
}; |