Created a skeleton of the api

This commit is contained in:
2024-11-22 19:45:29 -06:00
parent a9c055ddab
commit 38a5abbbc8
10 changed files with 120 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
export const VARIANT = {
standard: "Standard",
checklist: "Checklist",
project: "Project",
} as const;
export const VARIANTS = Object.values(VARIANT) as unknown as readonly [
string,
...string[],
];