ollama responds to discord msgs

This commit is contained in:
Kevin Dang
2023-12-25 18:10:00 -08:00
committed by Kevin Dang
parent 7dd9b8f90c
commit 4bcaae8461
5 changed files with 446 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
import { Event } from '../utils/index.js'
import messageCreate from './messageCreate.js'
import ready from './ready.js'
// Centralized export for all events
export default [
ready
ready,
messageCreate
] as Event[] // staticly is better ts practice, dynamic exporting is possible