import { ConfigService } from "@nestjs/config"; import { TelegrafModuleAsyncOptions } from "nestjs-telegraf"; export function telegrafConfig(): TelegrafModuleAsyncOptions { return { inject: [ConfigService], useFactory: async (configService: ConfigService) => ({ token: configService.getOrThrow("TELEGRAM_BOT_TOKEN"), botName: configService.getOrThrow("TELEGRAM_BOT_NAME"), }), }; }