compiler-discord/src/index.js
2019-03-12 12:51:39 -04:00

5 lines
261 B
JavaScript

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!')); // eslint-disable-line no-console
client.start();