Files
Emmelia-Link-Flayer-Rewrite/commands/ping.js
2023-02-24 23:53:26 -05:00

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.**');
}
};