0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-03-19 16:23:44 +03:00
nestjs-telegraf/lib/decorators/update.decorator.ts

9 lines
291 B
TypeScript
Raw Normal View History

2020-08-14 01:21:33 +03:00
import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* `@Update` decorator, it's like NestJS `@Controller` decorator,
* only for Telegram Bot API updates.
*/
export const Update = (): ClassDecorator => SetMetadata(DECORATORS.UPDATE, {});