//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!'); }, };