// src/module/workflow-automation/interface/action.decorator.ts import { SetMetadata } from '@nestjs/common'; export const ACTION_HANDLER = 'ACTION_HANDLER'; export const ActionHandler = (actionName: string) => SetMetadata(ACTION_HANDLER, actionName);