mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-24 15:04:38 +03:00
13 lines
358 B
TypeScript
13 lines
358 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>>();
|
|
|
|
setTimeout(() => console.log(allBotsMap), 2000);
|
|
|
|
export const telegrafAllBotsProvider: Provider = {
|
|
provide: TELEGRAF_ALL_BOTS,
|
|
useValue: allBotsMap,
|
|
};
|