nestjs-telegraf/lib/telegraf-all-bots.provider.ts
2022-07-09 18:53:22 +08:00

11 lines
308 B
TypeScript

import { Provider } from '@nestjs/common';
import { Telegraf } from 'telegraf';
import { TELEGRAF_ALL_BOTS } from './telegraf.constants';
export const allBotsMap = new Map<string, Telegraf<any>>();
export const telegrafAllBotsProvider: Provider = {
provide: TELEGRAF_ALL_BOTS,
useValue: allBotsMap,
};