nestjs-telegraf/lib/decorators/inject-bot.decorator.ts

6 lines
175 B
TypeScript
Raw Normal View History

2020-05-03 11:06:25 +03:00
import { Inject } from '@nestjs/common';
2021-01-02 01:27:01 +03:00
import { getBotToken } from '../utils';
2020-05-03 11:06:25 +03:00
2021-01-02 01:27:01 +03:00
export const InjectBot = (name?: string): ParameterDecorator =>
Inject(getBotToken(name));