/** @type {import('../index.js').Command} */exportdefault {
data: {
name: 'user',
description: 'Provides information about the user.',
},
asyncexecute(interaction) {
await interaction.reply(`This command was run by ${interaction.user.username}.`);
},
};