import { Command } from '../structures/command' export default new Command({ name: 'list', description: 'Lists upcoming events', run: async ({ interaction }) => { interaction.reply('Hello') } })