ban works!
diff --git a/src/commands/example.ts b/src/commands/example.ts
deleted file mode 100644
index 73e967e..0000000
--- a/src/commands/example.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { CommandInteraction } from "discord.js";
-import { SlashCommandBuilder } from "@discordjs/builders";
-import { WrappedCheck } from "jshaiku";
-
-const command = new SlashCommandBuilder()
- .setName("examplecommand")
- .setDescription("An example command")
-
-const callback = (interaction: CommandInteraction) => {
- interaction.reply("Hello, world!");
-}
-
-const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
- return interaction.user.id !== "123456789";
-}
-
-export { command };
-export { callback };
-export { check };
\ No newline at end of file
diff --git a/src/config.json b/src/config.json
deleted file mode 100644
index 14a32a7..0000000
--- a/src/config.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "token": "your-token-here",
- "developmentToken": "Nzc5Mzg4ODU2NTM2NTMwOTg0.X7f0bw.yzZg659UsLtHTfmeTsDXZa7O8K8",
- "managementGuildID": "your-management-guild-id-here",
- "developmentGuildID": "864185037078790195",
- "enableDevelopment": true,
- "owners": [
- "317731855317336067",
- "438733159748599813"
- ]
-}
\ No newline at end of file
diff --git a/src/index.ts b/src/index.ts
index 6bc97b7..9a361f6 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,6 +1,6 @@
import { HaikuClient } from 'jshaiku';
import { Intents } from 'discord.js';
-import config from './config.json' assert {type: 'json'};
+import config from './config/main.json' assert {type: 'json'};
const client = new HaikuClient({
intents: new Intents(32767).bitfield, // This is a way of specifying all intents w/o having to type them out