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

6 lines
189 B
TypeScript
Raw Normal View History

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