We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63b2f26 commit 2c9bf08Copy full SHA for 2c9bf08
packages/create-discord-bot/template/JavaScript/src/commands/utility/user.js
@@ -1,10 +1,10 @@
1
/** @type {import('../index.js').Command} */
2
export default {
3
- data: {
4
- name: 'user',
5
- description: 'Provides information about the user.',
6
- },
7
- async execute(interaction) {
8
- await interaction.reply(`This command was run by ${interaction.user.username}.`);
9
+ data: {
+ name: 'user',
+ description: 'Provides information about the user.',
+ },
+ async execute(interaction) {
+ await interaction.reply(`This command was run by ${interaction.user.username}.`);
10
};
0 commit comments