node-event-bot/server/commands/listEvents.ts
mightypanders 9b2ddc35fa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
big update of structure
2022-03-09 12:29:42 +01:00

9 lines
201 B
TypeScript

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