update interfaces
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
mightypanders
2022-04-09 23:02:08 +02:00
parent 4dad1b9ad8
commit 10bc4ae5df
5 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,9 @@
import { Command } from '../structures/command'
export default new Command({
name: 'ping',
description: 'Does a pong',
description: 'Does a pong, duh',
run: async ({ interaction }) => {
interaction.reply('pong')
console.log(`Ping interaction received.`)
interaction.followUp('pong')
}
})