Created
March 6, 2022 05:12
-
-
Save trezy/e281f5ad9a23cac3b2287e4ea6366043 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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