import type { Command } from 'disploy';
export default {
	name: 'ping',
	description: 'pong!',
	async run(interaction) {
		return void interaction.reply({
			content: 'ok',
		})
	}
} satisfies Command;
import type { Command } from 'disploy';
export default {
	name: 'ping',
	description: 'pong!',
	async run(interaction) {
		return void interaction.reply({
			content: 'ok',
		})
	}
} satisfies Command;