Move index.js

This commit is contained in:
1computer1 2019-03-12 12:31:45 -04:00
parent 8962ac52e9
commit 53709480fe
2 changed files with 2 additions and 2 deletions

5
src/index.js Normal file
View file

@ -0,0 +1,5 @@
const CompilerClient = require('./struct/CompilerClient');
const config = require('./config.json');
const client = new CompilerClient(config);
client.once('ready', () => console.log('Comp_iler ready to go!'));
client.start();