skopa/commands/utility/ping.js

14 lines
319 B
JavaScript

//Boring init stuff
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
//Creates the slash command
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('beeps at you ovo'),
//Executes said slash command
async execute(interaction) {
await interaction.reply('BEEP!');
},
};