From 350c83df834dfbd624db0073eea361bef7cb2413 Mon Sep 17 00:00:00 2001 From: keanuplayz Date: Thu, 21 May 2020 20:24:39 +0200 Subject: [PATCH] Added login to index.js --- src/{Structure => Structures}/BotClient.js | 0 src/index.js | 5 +++++ 2 files changed, 5 insertions(+) rename src/{Structure => Structures}/BotClient.js (100%) diff --git a/src/Structure/BotClient.js b/src/Structures/BotClient.js similarity index 100% rename from src/Structure/BotClient.js rename to src/Structures/BotClient.js diff --git a/src/index.js b/src/index.js index e69de29..b328438 100644 --- a/src/index.js +++ b/src/index.js @@ -0,0 +1,5 @@ +const BotClient = require("./Structures/BotClient"); +const config = require("../config.json"); + +const client = new BotClient(config); +client.login(); \ No newline at end of file