9 lines
201 B
TypeScript
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')
|
||
|
}
|
||
|
})
|