import { SetMetadata } from '@nestjs/common'; import { DECORATORS } from '../telegraf.constants'; /** * Registers a middleware. * * @see https://telegraf.js.org/#/?id=use */ export const Use = (): MethodDecorator => { return SetMetadata(DECORATORS.USE, {}); };