Skip to content

Instantly share code, notes, and snippets.

@trezy
Created March 6, 2022 05:12
Show Gist options
  • Save trezy/e281f5ad9a23cac3b2287e4ea6366043 to your computer and use it in GitHub Desktop.
Save trezy/e281f5ad9a23cac3b2287e4ea6366043 to your computer and use it in GitHub Desktop.
// Local imports
import { Command } from '../structures/Command.js'
export default new Command({
// Meta
name: 'ping',
description: 'Replies with pong!',
// Functionality
execute: async interaction => {
await interaction.reply('Pong!')
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment