mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 23:44:39 +03:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
|
|
/**
|
|
* Handler for /help command.
|
|
*
|
|
* @see https://telegraf.js.org/#/?id=help
|
|
*/
|
|
export const Help = (): MethodDecorator => {
|
|
return SetMetadata(DECORATORS.HELP, {});
|
|
};
|