rowboat/apps/cli/src/application/registry/functions.ts

6 lines
191 B
TypeScript
Raw Normal View History

2025-10-28 13:17:06 +05:30
import { GetDate } from "../functions/get_date.js";
import { Node } from "../nodes/node.js";
export const FunctionsRegistry: Record<string, Node> = {
get_date: new GetDate(),
} as const;