import { bot } from './telegram'; export async function notifyByTelegramId(telegramId: string | undefined, message: string) { if (!telegramId) return; await bot.telegram.sendMessage(telegramId, message, { parse_mode: 'HTML', }); }