11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
// ping uses backend settings via API
|
|
|
|
module.exports = {
|
|
name: 'ping',
|
|
description: 'Replies with Pong!',
|
|
enabled: true,
|
|
async execute(interaction) {
|
|
await interaction.reply('Pong!');
|
|
},
|
|
};
|