mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 07:48:11 +03:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
|
import { SetMetadata } from '@nestjs/common';
|
||
|
import { DECORATORS } from '../telegraf.constants';
|
||
|
|
||
|
/**
|
||
|
* Registers a middleware.
|
||
|
*
|
||
|
* https://telegraf.js.org/#/?id=use
|
||
|
*/
|
||
|
export function TelegrafUse(): MethodDecorator {
|
||
|
return SetMetadata(DECORATORS.USE, {});
|
||
|
}
|