Uwev2/src/bot.js

9 lines
192 B
JavaScript
Raw Normal View History

2017-11-07 17:22:41 +00:00
import { cfg, read } from './inc/cfg.js';
2017-11-08 11:56:04 +00:00
import { wrapper } from './inc/wrapper.js';
2017-11-07 17:22:41 +00:00
read().then(() => {
2017-11-08 11:56:04 +00:00
let bot = new wrapper();
2017-11-08 18:43:08 +00:00
bot.on('message', e => {
2017-11-08 19:30:21 +00:00
console.log( e );
2017-11-08 11:56:04 +00:00
});
2017-11-08 18:43:08 +00:00
});