Update all packages to latest

This commit is contained in:
Logan Cusano
2023-02-24 23:53:26 -05:00
parent 24b16d87ea
commit 868b092c06
4 changed files with 100 additions and 55 deletions

View File

@@ -1,7 +1,18 @@
const { SlashCommandBuilder } = require('discord.js');
// TODO - Add insults as the response to this command
module.exports = {
name: 'ping',
description: 'Ping!',
execute(message) {
message.channel.send('**Pong.**');
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.**');
}
};