fp/services/bot/src/old/utilities/simEmail.ts
CJ_Clippy e4b979d61c
Some checks failed
ci / build (push) Failing after 9m56s
bot progress
2024-08-06 17:13:58 -08:00

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