2017-11-07 17:22:41 +00:00
|
|
|
import { cfg, read } from './inc/cfg.js';
|
2017-11-08 21:29:43 +00:00
|
|
|
import { wrapper, clients } 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 21:29:43 +00:00
|
|
|
//if(e.type === "tg")
|
|
|
|
// clients[0].client.send(`PRIVMSG #kbot-dev ${e.user.nick}: ${e.message}`);
|
|
|
|
|
|
|
|
console.log(e.message);
|
2017-11-08 11:56:04 +00:00
|
|
|
});
|
2017-11-08 21:29:43 +00:00
|
|
|
|
2017-11-08 18:43:08 +00:00
|
|
|
});
|