13 lines
243 B
TypeScript
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}`)
|
|
},
|
|
})
|