Initial Commit

Only really used for reaction roles at the moment.
This commit is contained in:
Alexander Harding
2026-07-12 15:02:44 -04:00
commit fce43b9b2f
11 changed files with 1260 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Events } from "discord.js";
import { Event } from "../types/ExtendedClient";
import { ExtendedClient } from "../client/client";
const event: Event = {
data: {
name: Events.ClientReady
},
once: true,
exec: (c: ExtendedClient) => {
console.log(`Succesfully logged in as ${c.user?.username}`);
}
}
export default event;