Files
saddbot/commands/bot/task.js
2025-11-11 13:20:11 -05:00

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