diff --git a/src/index.js b/src/index.js index 92c78f0..282addf 100644 --- a/src/index.js +++ b/src/index.js @@ -3,8 +3,7 @@ const BotClient = require('./Structures/BotClient'); const config = require('../data/config.json'); - const panel = require('./panel.js'); - const client = new BotClient(config, panel); + const client = new BotClient(config); client.start(); })()