From 5cb758093064f2f45217063796f9fdfb41f5fb38 Mon Sep 17 00:00:00 2001 From: ayntee Date: Sun, 22 Nov 2020 20:14:51 +0400 Subject: [PATCH] Remove test.ts file (dont worry the token is fake :) ) --- test.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 test.ts diff --git a/test.ts b/test.ts deleted file mode 100644 index ce61c1b50..000000000 --- a/test.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { startBot } from "./mod.ts"; -import { Intents } from "./src/types/options.ts"; - -const token = "NzcxMDU2NzQzNTI1Nzc3NDM4.X5mkjQ.KhrhSnfw4fs1VfgRdg0cLxRrDkA"; - -await startBot({ - intents: [Intents.GUILDS, Intents.GUILD_MESSAGES], - token, - eventHandlers: { - ready: () => console.log("hello :)"), - debug: console.log, - }, -});