user.js 352 B

12345678910
  1. const { SlashCommandBuilder } = require('discord.js');
  2. module.exports = {
  3. data: new SlashCommandBuilder()
  4. .setName('user')
  5. .setDescription('Provides information about the user.'),
  6. async execute(interaction) {
  7. await interaction.reply(`This command was run by ${interaction.user.username}, who joined on ${interaction.member.joinedAt}.`);
  8. },
  9. };