From a5c4f2e2d0a4056ff22978d15f6f942ad832542f Mon Sep 17 00:00:00 2001 From: Minion3665 Date: Sun, 6 Sep 2020 21:22:39 +0100 Subject: [PATCH] move token to json --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index ad41a52..cdaa295 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,6 @@ "use strict"; const discord = require("discord.js"); -const token = require("token.json"); +const token = require("./token.json"); const client = new discord.Client({disableMentions: "all", partials: ['MESSAGE'], presence: {status: "idle", activity: {name: "discord go by.", type: "WATCHING"}}}, );