13 lines
250 B
TypeScript
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,
|
|
},
|
|
},
|
|
});
|
|
};
|