Files
lbf-bot/apps/discord-bot/src/commands/ping.ts

13 lines
250 B
TypeScript

import type { Command } from "~/commands";
export const pingCommand: Command = async (message, args) => {
await message.reply({
content: "🫵 Pong",
options: {
allowedMentions: {
repliedUser: false,
},
},
});
};