first commit

This commit is contained in:
Ramnique Singh 2025-10-28 13:17:06 +05:30
parent 476654af80
commit 6014437479
20 changed files with 2231 additions and 0 deletions

View file

@ -0,0 +1,6 @@
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;