nestjs-telegraf/lib/decorators/telegraf-help.decorator.ts

12 lines
273 B
TypeScript
Raw Normal View History

2020-03-19 16:44:05 +03:00
import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* Handler for /help command.
*
* https://telegraf.js.org/#/?id=help
*/
export function TelegrafHelp(): MethodDecorator {
return SetMetadata(DECORATORS.HELP, {});
}