aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ping.js')
-rw-r--r--commands/ping.js16
1 files changed, 8 insertions, 8 deletions
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`);
+ }
+};