From c82f3963011c1bed69f406eb1004bab412734704 Mon Sep 17 00:00:00 2001 From: 1computer1 Date: Tue, 12 Mar 2019 12:49:35 -0400 Subject: [PATCH] Update src/index.js --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 399d47f..247b808 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ const CompilerClient = require('./struct/CompilerClient'); -const config = require('./config.json'); +const config = require('../config.json'); const client = new CompilerClient(config); client.once('ready', () => console.log('Comp_iler ready to go!')); client.start();