CJ_Clippy 287321bb1e
Some checks failed
ci / build (push) Has been cancelled
differentiate services vs packages
2024-07-27 16:42:09 -08:00

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)'
});
},
};