Added login to index.js

This commit is contained in:
Keanu Timmermans 2020-05-21 20:24:39 +02:00
parent a4ad951ef9
commit 350c83df83
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
const BotClient = require("./Structures/BotClient");
const config = require("../config.json");
const client = new BotClient(config);
client.login();