import createBot from './bot' const bot = createBot() process.once('SIGINT', () => bot.stop()) process.once('SIGTERM', () => bot.stop()) bot.start({ onStart: (info) => { console.log(`Party Mix Bot started: @${info.username}`) }, })