mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2025-03-20 08:43:48 +03:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
import { Provider } from '@nestjs/common';
|
|
import { Bot } from 'grammy';
|
|
import { TELEGRAF_ALL_BOTS } from './telegraf.constants';
|
|
|
|
export const allBotsMap = new Map<string, Bot<any>>();
|
|
|
|
export const telegrafAllBotsProvider: Provider = {
|
|
provide: TELEGRAF_ALL_BOTS,
|
|
useValue: allBotsMap,
|
|
};
|