Uwev2/src/bot.js

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