nestjs-telegraf/src/telegraf-all-bots.provider.ts

11 lines
296 B
TypeScript
Raw Normal View History

2022-07-09 13:15:13 +03:00
import { Provider } from '@nestjs/common';
2022-11-20 14:13:48 +03:00
import { Bot } from 'grammy';
2022-07-09 13:15:13 +03:00
import { TELEGRAF_ALL_BOTS } from './telegraf.constants';
2022-11-20 14:13:48 +03:00
export const allBotsMap = new Map<string, Bot<any>>();
2022-07-09 13:15:13 +03:00
export const telegrafAllBotsProvider: Provider = {
provide: TELEGRAF_ALL_BOTS,
useValue: allBotsMap,
};