Initial Commit

This commit is contained in:
2025-06-29 20:29:31 -04:00
commit 480f541898
6 changed files with 299 additions and 0 deletions

12
commands/calendar/ping.ts Normal file
View File

@@ -0,0 +1,12 @@
// 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}.`
);
}