diff --git a/src/index.ts~ b/src/index.ts~ deleted file mode 100644 index bf421ed..0000000 --- a/src/index.ts~ +++ /dev/null @@ -1,18 +0,0 @@ -import { Client, Message } from "revolt.js"; -import { commandHandler } from "./utils/commandHandler" -import config from "../config.json" -const client : Client = new Client(); - - -client.on("ready", async () => - console.info(`Gummed in as ${client.user.username}!`) -); - -client.on("messageCreate", async (message: Message) => { - if (message.author.bot) {} - else { - if (message.content.startsWith(config.prefix)){commandHandler(message, config.prefix)} - } -}); - -client.loginBot(config.botKey);