UNPKG

better-ttb

Version:
13 lines (10 loc) 365 B
const TwitchBot = require('../index') const config = require('./config.json'); const client = new TwitchBot({ username: config.username, oauth: config.oauth, channels: ['caykeXD'] }); client.on('connected', require('./events/connected.js')); client.on('message', require('./events/message.js')); client.on('err', require('./events/error.js'));