UNPKG

create-discord-bot

Version:

A simple way to create a startup Discord bot.

11 lines (10 loc) 267 B
/** @type {import('../index.js').Command} */ export default { data: { name: 'user', description: 'Provides information about the user.', }, async execute(interaction) { await interaction.reply(`This command was run by ${interaction.user.username}.`); }, };