From d7e4cf29e6fc6b8f4ba07e837dcf56b3f5d63afc Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 9 Jul 2022 22:14:38 -0400 Subject: ESLint --- commands/ping.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'commands/ping.js') diff --git a/commands/ping.js b/commands/ping.js index 3a77d08..574afc8 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -19,13 +19,13 @@ * ***************************************************************************/ -import { SlashCommandBuilder } from '@discordjs/builders' +import { SlashCommandBuilder } from '@discordjs/builders'; export default { - data: new SlashCommandBuilder() - .setName('ping') - .setDescription('Pong!'), - async execute(interaction, bot) { - return await interaction.reply(`Pong! ${Math.round(bot.ws.ping)}ms`); - }, -}; \ No newline at end of file + data: new SlashCommandBuilder() + .setName('ping') + .setDescription('Pong!'), + async execute (interaction, bot) { + return await interaction.reply(`Pong! ${Math.round(bot.ws.ping)}ms`); + } +}; -- cgit v1.2.3