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 => {
|
|
|
|
//console.log( e );
|
|
|
|
e.reply( e.message );
|
2017-11-08 11:56:04 +00:00
|
|
|
});
|
2017-11-08 18:43:08 +00:00
|
|
|
});
|