nestjs-telegraf/lib/decorators/telegraf-start.decorator.ts
2020-03-19 16:21:35 +03:00

12 lines
277 B
TypeScript

import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* Handler for /start command.
*
* https://telegraf.js.org/#/?id=start
*/
export function TelegrafStart(): MethodDecorator {
return SetMetadata(DECORATORS.START, {});
}