set up basic workflow execution

This commit is contained in:
Ramnique Singh 2025-11-07 11:42:10 +05:30
parent 7758139893
commit c004bc5eb6
24 changed files with 794 additions and 298 deletions

View file

@ -1,6 +1,6 @@
import { GetDate } from "../functions/get_date.js";
import { Node } from "../nodes/node.js";
import { Step } from "../lib/step.js";
export const FunctionsRegistry: Record<string, Node> = {
export const FunctionsRegistry: Record<string, Step> = {
get_date: new GetDate(),
} as const;