xopbot
Version:
XOPBOT Is A Multipurpose Bot With Over 200+ Commands That Make You Love The Bot!
14 lines (12 loc) • 377 B
JavaScript
const fetch = require("node-fetch")
const { SlashCommandBuilder, SlashCommandStringOption } = require('@discordjs/builders');
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with pong :))'),
async execute(interaction) {
interaction.reply({
content: "Pong :D"
})
}
};