Removed panel reference in index

This commit is contained in:
WatDuhHekBro 2020-07-10 16:04:27 -05:00
parent 49d32d4744
commit d0f2caab9c
1 changed files with 1 additions and 2 deletions

View File

@ -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();
})()