big update of structure
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
mightypanders
2022-03-09 12:29:42 +01:00
parent 2f1cdbbaf6
commit 9b2ddc35fa
13 changed files with 118 additions and 315 deletions

View File

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