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:
2026-04-25 12:40:22 +03:00
commit 0097fb5183
83 changed files with 11788 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { CommandContext, Context } from 'grammy'
export async function handleHelp(ctx: CommandContext<Context>) {
await ctx.reply(
`*Как использовать Party Mix:*\n\n` +
`1\\. Создай вечеринку: /newparty Моя вечеринка\n` +
`2\\. Поделись кодом с друзьями\n` +
`3\\. Каждый добавляет себя: /addme Имя\n` +
`4\\. После \\— список треков строчкой за строчкой\n` +
`5\\. Открой веб\\-ссылку и нажми *Перемешать*\\!\n\n` +
`*Формат треков:*\n` +
`\`Исполнитель — Название\`\n` +
`\`Тараканы — Пойдём на улицу\`\n` +
`\`PALC — Залип\``,
{ parse_mode: 'MarkdownV2' },
)
}