node-event-bot/server/commands/pong.ts

10 lines
242 B
TypeScript
Raw Normal View History

import { Command } from '../structures/command'
export default new Command({
name: 'ping',
2022-04-09 23:02:08 +02:00
description: 'Does a pong, duh',
run: async ({ interaction }) => {
2022-04-09 23:02:08 +02:00
console.log(`Ping interaction received.`)
interaction.followUp('pong')
}
})