// Telegram plugin module implements bot behavior. import { createTelegramBotCore } from "./bot-core.js"; import { defaultTelegramBotDeps } from "./bot-deps.js"; import type { TelegramBotOptions } from "./bot.types.js"; export function createTelegramBot( opts: TelegramBotOptions, ): ReturnType { return createTelegramBotCore({ ...opts, telegramDeps: opts.telegramDeps ?? defaultTelegramBotDeps, }); }