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

10 lines
232 B
JavaScript

const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('tasks')
.setDescription('List tasks'),
async execute(interaction) {
await interaction.reply('todo');
},
};