1
1
mirror of https://github.com/Burn-E99/GroupUp.git synced 2026-06-04 08:53:49 -04:00

Initial setup for standard events

This commit is contained in:
Ean Milligan (Bastion)
2023-01-11 18:06:20 -05:00
parent 460a7ed557
commit 3e6168a396
14 changed files with 310 additions and 37 deletions

13
src/events/_index.ts Normal file
View File

@@ -0,0 +1,13 @@
import { ready } from './ready.ts';
import { guildCreate } from './guildCreate.ts';
import { guildDelete } from './guildDelete.ts';
import { debug } from './debug.ts';
import { messageCreate } from './messageCreate.ts';
export default {
ready,
guildCreate,
guildDelete,
debug,
messageCreate,
};