11 lines
316 B
JavaScript
11 lines
316 B
JavaScript
const { SlashCommandBuilder } = require('@discordjs/builders');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('user')
|
|
.setDescription('Replies with User info!'),
|
|
async execute(interaction) {
|
|
await interaction.reply(`Your tag: ${interaction.user.tag}\nYour id: ${interaction.user.id}`);
|
|
},
|
|
};
|