import { cfg, read } from './inc/cfg.js'; import { wrapper } from './inc/wrapper.js'; read().then(() => { let bot = new wrapper(); bot.on('message', e => { console.log( e ); }); });