Files
party-mix-app/apps/bot/src/index.ts

13 lines
243 B
TypeScript

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}`)
},
})