mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-16 18:25:17 +02:00
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
|
|
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;
|