compiler-discord/index.js
2019-03-12 05:09:46 -04:00

5 lines
230 B
JavaScript

const CompilerClient = require('./src/struct/CompilerClient');
const config = require('./config.json');
const client = new CompilerClient(config);
client.once('ready', () => console.log('Comp_iler ready to go!'));
client.start();