2
0
Files
bot/packages/js/src/features/blocks/integrations/chatwoot/utils/executeChatwoot.ts

7 lines
220 B
TypeScript
Raw Normal View History

import { executeCode } from '@/features/blocks/logic/code'
import { CodeToExecute } from 'models'
export const executeChatwoot = (chatwoot: { codeToExecute: CodeToExecute }) => {
executeCode(chatwoot.codeToExecute)
}