Files
blitzcrank/commands/calendar/ping.ts
2025-06-29 20:29:31 -04:00

13 lines
432 B
TypeScript

// import type { ChatInputCommandInteraction } from "discord.js";
import { SlashCommandBuilder, } from "discord.js";
export const data = new SlashCommandBuilder()
.setName("ping")
.setDescription("Send a ping to the bot");
export async function execute(interaction) {
await interaction.reply(
`Pong! This command was run by ${interaction.user.username}, who joined on ${interaction.member.joinedAt}.`
);
}