* sample env and late version incr * added slash command compatibility * updated command name * updated environment sample * updated interaction comment
11 lines
359 B
TypeScript
11 lines
359 B
TypeScript
import { Event } from '../utils/index.js'
|
|
import interactionCreate from './interactionCreate.js'
|
|
import messageCreate from './messageCreate.js'
|
|
import ready from './ready.js'
|
|
|
|
// Centralized export for all events
|
|
export default [
|
|
ready,
|
|
messageCreate,
|
|
interactionCreate
|
|
] as Event[] // staticly is better ts practice, dynamic exporting is possible
|