0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-04-04 15:33:45 +03:00
nestjs-telegraf/lib/utils/create-bot-factory.util.ts

17 lines
412 B
TypeScript

import { Telegraf } from 'telegraf';
import { TelegrafModuleOptions } from '../interfaces';
export async function createBotFactory(
options: TelegrafModuleOptions,
): Promise<Telegraf<any>> {
const bot = new Telegraf<any>(options.token, options.options);
bot.use(...(options.middlewares ?? []));
if (options.launchOptions !== false) {
await bot.launch(options.launchOptions);
}
return bot;
}