10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('task')
|
|
.setDescription('Execute a task.'),
|
|
async execute(interaction) {
|
|
await interaction.reply('todo');
|
|
},
|
|
}; |