jellyfin-discord-bot/server/commands/pong.ts

10 lines
242 B
TypeScript
Raw Normal View History

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