2
0
Files
bot/packages/js/src/features/blocks/integrations/chatwoot/utils/executeChatwoot.ts
Baptiste Arnaud 1a3869ae6d ⚗️ Implement bot v2 MVP (#194)
Closes #190
2022-12-22 17:02:34 +01:00

7 lines
220 B
TypeScript

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