Initial commit: party-mix-app with prefetch cache, audio preload optimizations
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
12
apps/bot/src/index.ts
Normal file
12
apps/bot/src/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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}`)
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user