mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-03 18:24:14 +00:00
13 lines
460 B
TypeScript
13 lines
460 B
TypeScript
import { SlashCommandBuilder } from 'discord.js';
|
|
|
|
interface Command {
|
|
data: SlashCommandBuilder;
|
|
execute: (interaction: any) => Promise<void>;
|
|
}
|
|
|
|
export const command: Command = {
|
|
data: new SlashCommandBuilder().setName('user').setDescription('Provides information about the user.'),
|
|
execute: async (interaction) => {
|
|
await interaction.reply(`This command was run by ${interaction.user.username}, who joined on ${interaction.member.joinedAt}.`);
|
|
},
|
|
};
|