mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 09:26:23 +02:00
6 lines
No EOL
189 B
TypeScript
6 lines
No EOL
189 B
TypeScript
import { GetDate } from "../functions/get_date.js";
|
|
import { Step } from "../lib/step.js";
|
|
|
|
export const FunctionsRegistry: Record<string, Step> = {
|
|
get_date: new GetDate(),
|
|
} as const; |