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