node-event-bot/server/commands/pong.ts
mightypanders 4dad1b9ad8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
register commands to guilds the bot is in
2022-03-23 21:59:27 +01:00

9 lines
190 B
TypeScript

import { Command } from '../structures/command'
export default new Command({
name: 'ping',
description: 'Does a pong',
run: async ({ interaction }) => {
interaction.reply('pong')
}
})