17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import { type ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder()
|
|
.setName('sim-email')
|
|
.setDescription('Simulate an incoming platform notification e-mail'),
|
|
async execute(interaction: ChatInputCommandInteraction): Promise<void> {
|
|
|
|
await interaction.reply({
|
|
content: 'testing 123 this is sim-email (simEmail.ts)'
|
|
});
|
|
},
|
|
};
|