skopa/commands/utility/ping.js

14 lines
319 B
JavaScript
Raw Normal View History

2023-12-17 20:21:26 -05:00
//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!');
},
};