2019-03-12 17:31:45 +01:00
|
|
|
const CompilerClient = require('./struct/CompilerClient');
|
2019-03-12 17:49:35 +01:00
|
|
|
const config = require('../config.json');
|
2019-03-12 10:09:46 +01:00
|
|
|
const client = new CompilerClient(config);
|
2019-03-12 17:51:39 +01:00
|
|
|
client.once('ready', () => console.log('Comp_iler ready to go!')); // eslint-disable-line no-console
|
2019-03-12 10:09:46 +01:00
|
|
|
client.start();
|