Files
valorantDiscordBot/commands/ping.js
2022-08-26 18:19:28 +00:00

17 lines
287 B
JavaScript

'use strict';
const { SlashCommandBuilder } = require('discord.js');
const data = new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with pong!');
const execute = async (interaction) => {
await interaction.reply('Pong!');
};
module.exports = {
data,
execute
};