MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / getExecutor

Function getExecutor

src/features/executions/lib/executor-registry.ts:26–33  ·  view source on GitHub ↗
(type: NodeType)

Source from the content-addressed store, hash-verified

24};
25
26export const getExecutor = (type: NodeType): NodeExecutor => {
27 const executor = executorRegistry[type];
28 if (!executor) {
29 throw new Error(`No executor found for node type: ${type}`);
30 }
31
32 return executor;
33};

Callers 1

functions.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected