0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-03-14 14:13:42 +03:00
nestjs-telegraf/lib/decorators/telegraf-game-query.decorator.ts
2020-03-19 17:28:56 +03:00

12 lines
337 B
TypeScript

import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* Registers middleware for handling callback_data actions with game query.
*
* https://telegraf.js.org/#/?id=inlinequery
*/
export function TelegrafGameQuery(): MethodDecorator {
return SetMetadata(DECORATORS.GAME_QUERY, {});
}