Files
discord-aidolls/src/events/index.ts
Kevin Dang 89c19990fa slash commands integrated
* sample env and late version incr

* added slash command compatibility

* updated command name

* updated environment sample

* updated interaction comment
2024-01-31 10:28:02 -08:00

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