import { SetMetadata } from '@nestjs/common'; import { OEMC_CONTROLLER, OEMC_METHOD } from './nestjs-oemc.constants'; export const OemcController = (controllerAlias: string) => SetMetadata(OEMC_CONTROLLER, controllerAlias); export const OemcMethod = (methodAlias: string) => SetMetadata(OEMC_METHOD, methodAlias);