import { Command } from '../structures/command' export default new Command({ name: 'ping', description: 'Does a pong', run: async ({ interaction }) => { interaction.reply('pong') } })