compiler-discord/src/index.js

6 lines
226 B
JavaScript
Raw Normal View History

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