Add countChars function

This commit is contained in:
2023-04-04 17:20:28 -05:00
parent 9d5ef6f883
commit 03935a0cee
4 changed files with 19 additions and 19 deletions

View File

@@ -4,8 +4,8 @@ module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
async execute(interaction, client) {
await interaction.reply('Pong!');
console.log("User " + interaction.user.tag + " ran /ping");
console.log("User " + interaction.user.tag + " ran /ping");
},
};