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 PRIORITY = {
high: "High",
medium: "Medium",
low: "Low",
} as const;
export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [
string,
...string[],
];